summaryrefslogtreecommitdiff
path: root/include/comphelper
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-09-01 13:42:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-09-01 15:35:41 +0200
commit6fb45286490f866013c90a9d5dc4d296e67c7d04 (patch)
tree4c7fc3ba0f592c80884d34f76e6b1f9a8e0532ad /include/comphelper
parentf767d5e2b017c0d0cfd23ff3318cb30901847722 (diff)
loplugin:unusedmethods
Change-Id: Ifaf3860a31fc151bb7052db1b87962b8aba27c37 Reviewed-on: https://gerrit.libreoffice.org/78366 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper')
-rw-r--r--include/comphelper/interaction.hxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/comphelper/interaction.hxx b/include/comphelper/interaction.hxx
index ec9f38e29436..be22d4254983 100644
--- a/include/comphelper/interaction.hxx
+++ b/include/comphelper/interaction.hxx
@@ -84,25 +84,6 @@ namespace comphelper
typedef OInteraction< css::task::XInteractionRetry > OInteractionRetry;
- //= OInteractionPassword
-
- class COMPHELPER_DLLPUBLIC OInteractionPassword : public OInteraction< css::task::XInteractionPassword >
- {
- public:
- OInteractionPassword( const OUString& _rInitialPassword )
- :m_sPassword( _rInitialPassword )
- {
- }
-
- // XInteractionPassword
- virtual void SAL_CALL setPassword( const OUString& Password ) override;
- virtual OUString SAL_CALL getPassword( ) override;
-
- private:
- OUString m_sPassword;
- };
-
-
//= OInteractionRequest
typedef ::cppu::WeakImplHelper < css::task::XInteractionRequest