summaryrefslogtreecommitdiff
path: root/forms/source
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2012-08-30 09:29:23 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2012-08-30 09:29:23 +0200
commita0b3feafe7c8106d6873d4db4023b1911b846d5a (patch)
tree2065d8a09d6c510be922cd74f911a44c7a50d8db /forms/source
parentde8d2c313bc0baea4babf2ab75ac2f92249e57b9 (diff)
fix C++ warning declaration shadows member of this
Change-Id: Id14e14222615df33f5da7bab6f73d2752ae41509
Diffstat (limited to 'forms/source')
-rw-r--r--forms/source/runtime/formoperations.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/runtime/formoperations.hxx b/forms/source/runtime/formoperations.hxx
index 34f3a6a6792e..96853489bdb8 100644
--- a/forms/source/runtime/formoperations.hxx
+++ b/forms/source/runtime/formoperations.hxx
@@ -301,13 +301,13 @@ namespace frm
/** calls a (member) function, catches SQLExceptions, extends them with additional context information,
and rethrows them
- @param Action
+ @param f
a fuctionoid with no arguments to do the work
@param _nErrorResourceId
the id of the resources string to use as error message
*/
template < typename FunctObj >
- void impl_doActionInSQLContext_throw( FunctObj Action, sal_uInt16 _nErrorResourceId ) const;
+ void impl_doActionInSQLContext_throw( FunctObj f, sal_uInt16 _nErrorResourceId ) const;
// functionoid to call appendOrderByColumn
class impl_appendOrderByColumn_throw