summaryrefslogtreecommitdiff
path: root/framework/source/uielement
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/uielement')
-rw-r--r--framework/source/uielement/generictoolbarcontroller.cxx2
-rw-r--r--framework/source/uielement/statusbaritem.cxx4
-rw-r--r--framework/source/uielement/toolbarmanager.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/framework/source/uielement/generictoolbarcontroller.cxx b/framework/source/uielement/generictoolbarcontroller.cxx
index 90f95ab91bdb..620462b71fdc 100644
--- a/framework/source/uielement/generictoolbarcontroller.cxx
+++ b/framework/source/uielement/generictoolbarcontroller.cxx
@@ -320,7 +320,7 @@ class Toolbarmenu : public ::PopupMenu
Toolbarmenu::Toolbarmenu()
{
- SAL_INFO("fwk.uielement", "contstructing Toolbarmenu " << this);
+ SAL_INFO("fwk.uielement", "constructing Toolbarmenu " << this);
}
Toolbarmenu::~Toolbarmenu()
diff --git a/framework/source/uielement/statusbaritem.cxx b/framework/source/uielement/statusbaritem.cxx
index 22c75144bd14..c33bd04b10bf 100644
--- a/framework/source/uielement/statusbaritem.cxx
+++ b/framework/source/uielement/statusbaritem.cxx
@@ -162,7 +162,7 @@ throw (RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( m_pStatusBar )
- m_pStatusBar->SetItemText( m_nId, rText );;
+ m_pStatusBar->SetItemText( m_nId, rText );
}
OUString SAL_CALL StatusbarItem::getHelpText()
@@ -180,7 +180,7 @@ throw (RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if ( m_pStatusBar )
- m_pStatusBar->SetHelpText( m_nId, rHelpText );;
+ m_pStatusBar->SetHelpText( m_nId, rHelpText );
}
OUString SAL_CALL StatusbarItem::getQuickHelpText()
diff --git a/framework/source/uielement/toolbarmanager.cxx b/framework/source/uielement/toolbarmanager.cxx
index 77849d534fc9..16d1c3183f66 100644
--- a/framework/source/uielement/toolbarmanager.cxx
+++ b/framework/source/uielement/toolbarmanager.cxx
@@ -187,7 +187,7 @@ ToolBarManager::ToolBarManager( const Reference< XComponentContext >& rxContext,
idx++; // will become 0 if '/' not found: use full string
OString aHelpIdAsString( HELPID_PREFIX_TESTTOOL );
OUString aToolbarName = rResourceName.copy( idx );
- aHelpIdAsString += OUStringToOString( aToolbarName, RTL_TEXTENCODING_UTF8 );;
+ aHelpIdAsString += OUStringToOString( aToolbarName, RTL_TEXTENCODING_UTF8 );
m_pToolBar->SetHelpId( aHelpIdAsString );
m_aAsyncUpdateControllersTimer.SetTimeout( 50 );