summaryrefslogtreecommitdiff
path: root/vcl/unx/generic/app/i18n_status.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/unx/generic/app/i18n_status.cxx')
-rw-r--r--vcl/unx/generic/app/i18n_status.cxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/vcl/unx/generic/app/i18n_status.cxx b/vcl/unx/generic/app/i18n_status.cxx
index b6b2bbd8e08c..b5a286a46c96 100644
--- a/vcl/unx/generic/app/i18n_status.cxx
+++ b/vcl/unx/generic/app/i18n_status.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#if OSL_DEBUG_LEVEL > 1
#include <stdio.h>
#endif
@@ -75,8 +74,6 @@ void StatusWindow::setPosition( SalFrame* )
{
}
-
-
namespace vcl {
class XIMStatusWindow : public StatusWindow
@@ -301,8 +298,6 @@ OUString XIMStatusWindow::getText() const
return m_aStatusText.GetText();
}
-
-
namespace vcl {
class IIIMPStatusWindow : public StatusWindow
@@ -470,8 +465,6 @@ void IIIMPStatusWindow::GetFocus()
}
}
-
-
IMPL_LINK( IIIMPStatusWindow, SelectHdl, MenuButton*, pBtn )
{
if( pBtn == & m_aStatusBtn )
@@ -516,31 +509,23 @@ I18NStatus& I18NStatus::get()
return *pInstance;
}
-
-
bool I18NStatus::exists()
{
return pInstance != NULL;
}
-
-
void I18NStatus::free()
{
if( pInstance )
delete pInstance, pInstance = NULL;
}
-
-
I18NStatus::I18NStatus() :
m_pParent( NULL ),
m_pStatusWindow( NULL )
{
}
-
-
I18NStatus::~I18NStatus()
{
if( m_pStatusWindow )
@@ -549,8 +534,6 @@ I18NStatus::~I18NStatus()
pInstance = NULL;
}
-
-
void I18NStatus::setParent( SalFrame* pParent )
{
m_pParent = pParent;
@@ -567,8 +550,6 @@ void I18NStatus::setParent( SalFrame* pParent )
m_pStatusWindow->setPosition( m_pParent );
}
-
-
void I18NStatus::show( bool bShow, ShowReason eReason )
{
if( m_pStatusWindow )
@@ -578,8 +559,6 @@ void I18NStatus::show( bool bShow, ShowReason eReason )
}
}
-
-
void I18NStatus::setStatusText( const OUString& rText )
{
if( m_pStatusWindow )
@@ -615,15 +594,11 @@ void I18NStatus::setStatusText( const OUString& rText )
}
}
-
-
void I18NStatus::changeIM( const OUString& rIM )
{
m_aCurrentIM = rIM;
}
-
-
SalFrame* I18NStatus::getStatusFrame() const
{
SalFrame* pRet = NULL;