diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-12-22 09:00:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-12-22 11:07:03 +0000 |
commit | 6c415f735bbf9201a18288e2ea16eacad4d635cd (patch) | |
tree | 8e4f15bb62d7082537e04b85e0f57268ec0cd428 /uui/source/authfallbackdlg.hxx | |
parent | 29c38bab7a69127c69f17c9a62b35faf68deb843 (diff) |
callcatcher: update unused code
Change-Id: I62e49fbf27364bd244099a9bb247452d5a691119
Diffstat (limited to 'uui/source/authfallbackdlg.hxx')
-rw-r--r-- | uui/source/authfallbackdlg.hxx | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/uui/source/authfallbackdlg.hxx b/uui/source/authfallbackdlg.hxx index d068f48fd964..d73eebf70f4f 100644 --- a/uui/source/authfallbackdlg.hxx +++ b/uui/source/authfallbackdlg.hxx @@ -18,22 +18,18 @@ class AuthFallbackDlg : public ModalDialog { -private : - +private: VclMultiLineEdit* m_pTVInstructions; Edit* m_pEDUrl; Edit* m_pEDCode; PushButton* m_pBTOk; PushButton* m_pBTCancel; -public : - - AuthFallbackDlg( Window* pParent); - AuthFallbackDlg(Window* pParent, const OUString& instructions, - const OUString& url ); - virtual ~AuthFallbackDlg(); +public: + AuthFallbackDlg(Window* pParent, const OUString& instructions, + const OUString& url); - OUString GetCode() { return m_pEDCode->GetText(); } + OUString GetCode() const { return m_pEDCode->GetText(); } private: |