diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-03 15:32:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-03 15:32:12 +0200 |
commit | 46cb31f6fdc80d50cbca404a3bc88ecb72ce1b31 (patch) | |
tree | 750c45145ec314c158c07877b8e56076f4c00181 /vcl/unx | |
parent | 3218dca3e98c0f785314fbd1aa3d29c24d641273 (diff) |
Remove unused getText
Change-Id: I13145c4dcdf95d7979dc1887ba08a243f8b5a224
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/generic/app/i18n_status.cxx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/vcl/unx/generic/app/i18n_status.cxx b/vcl/unx/generic/app/i18n_status.cxx index b5a286a46c96..945d858bce09 100644 --- a/vcl/unx/generic/app/i18n_status.cxx +++ b/vcl/unx/generic/app/i18n_status.cxx @@ -56,7 +56,6 @@ public: virtual void setPosition( SalFrame* ); virtual void setText( const OUString & ) = 0; - virtual OUString getText() const = 0; virtual void show( bool bShow, I18NStatus::ShowReason eReason ) = 0; virtual void toggle( bool bOn ) = 0; }; @@ -103,7 +102,6 @@ public: virtual void setPosition( SalFrame* ) SAL_OVERRIDE; virtual void setText( const OUString & ) SAL_OVERRIDE; - virtual OUString getText() const SAL_OVERRIDE; virtual void show( bool bShow, I18NStatus::ShowReason eReason ) SAL_OVERRIDE; virtual void toggle( bool bOn ) SAL_OVERRIDE; @@ -293,11 +291,6 @@ void XIMStatusWindow::setText( const OUString& rText ) m_aWindowSize.Width() = m_aStatusText.GetTextWidth( rText )+8; } -OUString XIMStatusWindow::getText() const -{ - return m_aStatusText.GetText(); -} - namespace vcl { class IIIMPStatusWindow : public StatusWindow @@ -317,7 +310,6 @@ public: virtual ~IIIMPStatusWindow(); virtual void setText( const OUString & ) SAL_OVERRIDE; - virtual OUString getText() const SAL_OVERRIDE; virtual void show( bool bShow, I18NStatus::ShowReason eReason ) SAL_OVERRIDE; virtual void toggle( bool bOn ) SAL_OVERRIDE; void layout(); @@ -398,11 +390,6 @@ void IIIMPStatusWindow::setText( const OUString& rText ) m_aStatusBtn.SetText( rText ); } -OUString IIIMPStatusWindow::getText() const -{ - return m_aStatusBtn.GetText(); -} - void IIIMPStatusWindow::show( bool bShow, I18NStatus::ShowReason eReason ) { // hide IIIMPStatusWindow only in presentations |