diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2012-08-30 09:23:03 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2012-08-30 09:24:16 +0200 |
commit | de8d2c313bc0baea4babf2ab75ac2f92249e57b9 (patch) | |
tree | 256c56c641870cd41eedfcec0d294dbedcc017e8 /forms/source | |
parent | b7afe94667d4acd1979fb0aff32b8b55d617dfbc (diff) |
fix C++ warning: declaration shadows member of this
Change-Id: Ib88fecd856c9767cafa0191d3d93b372776d414a
Diffstat (limited to 'forms/source')
-rw-r--r-- | forms/source/runtime/formoperations.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/runtime/formoperations.cxx b/forms/source/runtime/formoperations.cxx index 97ad91c9c3c9..ad5e0fd23e85 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 ) { |