diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-09-05 17:05:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-09-05 17:05:03 +0100 |
commit | 8da489aa9da47634c51010e49bb0844147169cfa (patch) | |
tree | 848112727232dc6ae17a371efb6fd6b1f57d61a5 /vcl/unx/generic | |
parent | 8b0287543d87659fd4bfde5edb6725ee5da5f80e (diff) |
now we can ditch these unused methods
Diffstat (limited to 'vcl/unx/generic')
-rw-r--r-- | vcl/unx/generic/app/i18n_status.cxx | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/vcl/unx/generic/app/i18n_status.cxx b/vcl/unx/generic/app/i18n_status.cxx index 8cae9d12eedd..f818f04b1ac7 100644 --- a/vcl/unx/generic/app/i18n_status.cxx +++ b/vcl/unx/generic/app/i18n_status.cxx @@ -638,42 +638,6 @@ void I18NStatus::changeIM( const String& rIM ) // -------------------------------------------------------------------------- -String I18NStatus::getStatusText() const -{ - return m_pStatusWindow ? m_pStatusWindow->getText() : String(); -} - -// -------------------------------------------------------------------------- - -void I18NStatus::clearChoices() -{ - m_aChoices.clear(); -} - -// -------------------------------------------------------------------------- - -void I18NStatus::addChoice( const String& rChoice, void* pData ) -{ - ChoiceData aData; - aData.pData = pData; - aData.aString = rChoice; - m_aChoices.push_back( aData ); -} - -// -------------------------------------------------------------------------- - -void I18NStatus::toTop() const -{ - if( m_pStatusWindow ) - { - const SystemEnvData* pData = m_pStatusWindow->GetSystemData(); - XRaiseWindow( (Display*)pData->pDisplay, - (XLIB_Window)pData->aShellWindow ); - } -} - -// -------------------------------------------------------------------------- - SalFrame* I18NStatus::getStatusFrame() const { SalFrame* pRet = NULL; |