forms/source/runtime/formoperations.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit de8d2c313bc0baea4babf2ab75ac2f92249e57b9
Author: Lionel Elie Mamane <lio...@mamane.lu>
Date:   Thu Aug 30 09:23:03 2012 +0200

    fix C++ warning: declaration shadows member of this
    
    Change-Id: Ib88fecd856c9767cafa0191d3d93b372776d414a

diff --git a/forms/source/runtime/formoperations.cxx 
b/forms/source/runtime/formoperations.cxx
index 97ad91c..ad5e0fd 100644
--- a/forms/source/runtime/formoperations.cxx
+++ b/forms/source/runtime/formoperations.cxx
@@ -1664,11 +1664,11 @@ namespace frm
 
     
//------------------------------------------------------------------------------
     template < typename FunctObj >
-    void FormOperations::impl_doActionInSQLContext_throw( FunctObj Action, 
sal_uInt16 _nErrorResourceId ) const
+    void FormOperations::impl_doActionInSQLContext_throw( FunctObj f, 
sal_uInt16 _nErrorResourceId ) const
     {
         try
         {
-            Action();
+            f();
         }
         catch( const SQLException& e )
         {
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to