summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-09 17:37:29 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-10 18:32:03 +0100
commit9128faccd3e745a1087755c3086ea012109980b9 (patch)
treedb823bb9c89a14ae6d5a245f34daf619f6a33519 /comphelper
parent20c6cb0e793fa495f8ebfb51a3855ea76ad9a256 (diff)
Avoid reserved identifier
Change-Id: Ib02af22430421a2f49de742853ca0f5c42e21cd0
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/interaction.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/interaction.cxx b/comphelper/source/misc/interaction.cxx
index 25d36239a5f3..62f5bd2b84a5 100644
--- a/comphelper/source/misc/interaction.cxx
+++ b/comphelper/source/misc/interaction.cxx
@@ -28,9 +28,9 @@ namespace comphelper
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::task;
- void SAL_CALL OInteractionPassword::setPassword( const OUString& _Password ) throw (RuntimeException, std::exception)
+ void SAL_CALL OInteractionPassword::setPassword( const OUString& Password ) throw (RuntimeException, std::exception)
{
- m_sPassword = _Password;
+ m_sPassword = Password;
}