summaryrefslogtreecommitdiff
path: root/comphelper/inc/comphelper/interaction.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/inc/comphelper/interaction.hxx')
-rw-r--r--comphelper/inc/comphelper/interaction.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/comphelper/inc/comphelper/interaction.hxx b/comphelper/inc/comphelper/interaction.hxx
index 230604ef87c9..bbd925efd3fa 100644
--- a/comphelper/inc/comphelper/interaction.hxx
+++ b/comphelper/inc/comphelper/interaction.hxx
@@ -113,17 +113,17 @@ namespace comphelper
{
}
- OInteractionPassword( const ::rtl::OUString& _rInitialPassword )
+ OInteractionPassword( const OUString& _rInitialPassword )
:m_sPassword( _rInitialPassword )
{
}
// XInteractionPassword
- virtual void SAL_CALL setPassword( const ::rtl::OUString& _Password ) throw (::com::sun::star::uno::RuntimeException);
- virtual ::rtl::OUString SAL_CALL getPassword( ) throw (::com::sun::star::uno::RuntimeException);
+ virtual void SAL_CALL setPassword( const OUString& _Password ) throw (::com::sun::star::uno::RuntimeException);
+ virtual OUString SAL_CALL getPassword( ) throw (::com::sun::star::uno::RuntimeException);
private:
- ::rtl::OUString m_sPassword;
+ OUString m_sPassword;
};
//=========================================================================