summaryrefslogtreecommitdiff
path: root/framework/source
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2013-08-20 18:26:05 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-08-20 19:30:59 +0000
commit1c7af455ab9345304a7ac48ce2e0310de2ac8a75 (patch)
tree4c71062081ca1990f45c33c6a3ed0ed14278bd34 /framework/source
parentc3164e42dcdf879ed53e235db13f498eb730bae9 (diff)
Re-work 8bit characters in source code, or remove them.
Change-Id: I93e14d4936c0ffbe03425d4a54bb0e09bc62b3e3 Reviewed-on: https://gerrit.libreoffice.org/5550 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Meeks <michael.meeks@suse.com> Tested-by: Michael Meeks <michael.meeks@suse.com>
Diffstat (limited to 'framework/source')
-rw-r--r--framework/source/fwi/classes/protocolhandlercache.cxx2
-rw-r--r--framework/source/fwi/threadhelp/transactionmanager.cxx2
-rw-r--r--framework/source/uiconfiguration/imagemanagerimpl.hxx2
-rw-r--r--framework/source/uielement/statusbarmanager.cxx8
4 files changed, 7 insertions, 7 deletions
diff --git a/framework/source/fwi/classes/protocolhandlercache.cxx b/framework/source/fwi/classes/protocolhandlercache.cxx
index cefbe4e96065..fe9fb240c2ae 100644
--- a/framework/source/fwi/classes/protocolhandlercache.cxx
+++ b/framework/source/fwi/classes/protocolhandlercache.cxx
@@ -269,7 +269,7 @@ void HandlerCFGAccess::read( HandlerHash** ppHandler ,
(**ppPattern)[*pItem] = lNames[nSource];
}
- // ï¿œnsert the handler info into the normal handler cache
+ // insert the handler info into the normal handler cache
(**ppHandler)[lNames[nSource]] = aHandler;
++nSource;
}
diff --git a/framework/source/fwi/threadhelp/transactionmanager.cxx b/framework/source/fwi/threadhelp/transactionmanager.cxx
index cd1a30e69fdc..c4075402c140 100644
--- a/framework/source/fwi/threadhelp/transactionmanager.cxx
+++ b/framework/source/fwi/threadhelp/transactionmanager.cxx
@@ -141,7 +141,7 @@ void TransactionManager::setWorkingMode( EWorkingMode eMode )
// Make member access threadsafe!
ResetableGuard aGuard( m_aMutex );
- // Check working mode again .. because anozï¿œther instance could be faster.
+ // Check working mode again .. because another instance could be faster.
// (It's possible to set this guard at first of this method too!)
if( m_aTransactionManager.getWorkingMode() == E_INIT )
{
diff --git a/framework/source/uiconfiguration/imagemanagerimpl.hxx b/framework/source/uiconfiguration/imagemanagerimpl.hxx
index 81bd48609543..7e7b35f357e0 100644
--- a/framework/source/uiconfiguration/imagemanagerimpl.hxx
+++ b/framework/source/uiconfiguration/imagemanagerimpl.hxx
@@ -96,7 +96,7 @@ namespace framework
virtual ::std::vector< OUString >& getImageNames();
virtual ::std::vector< OUString >& getImageCommandNames();
- // Reference
+ // IReference
virtual oslInterlockedCount SAL_CALL acquire();
virtual oslInterlockedCount SAL_CALL release();
diff --git a/framework/source/uielement/statusbarmanager.cxx b/framework/source/uielement/statusbarmanager.cxx
index a014cfa7cbf0..83793a853a44 100644
--- a/framework/source/uielement/statusbarmanager.cxx
+++ b/framework/source/uielement/statusbarmanager.cxx
@@ -365,7 +365,7 @@ void StatusBarManager::CreateControllers()
uno::Sequence< uno::Any > aArgs( comphelper::containerToSequence( aPropVector ) );
- // 1º) UNO Statusbar controllers, registered in Controllers.xcu
+ // 1) UNO Statusbar controllers, registered in Controllers.xcu
if ( m_xStatusbarControllerFactory.is() &&
m_xStatusbarControllerFactory->hasController( aCommandURL, m_aModuleIdentifier ))
{
@@ -380,11 +380,11 @@ void StatusBarManager::CreateControllers()
{
svt::StatusbarController* pController( 0 );
- // 2º) Old SFX2 Statusbar controllers
+ // 2) Old SFX2 Statusbar controllers
pController = CreateStatusBarController( m_xFrame, m_pStatusBar, nId, aCommandURL );
if ( !pController )
{
- // 3º) Is Add-on? Generic statusbar controller
+ // 3) Is Add-on? Generic statusbar controller
if ( pItemData )
{
pController = new GenericStatusbarController( m_xContext,
@@ -394,7 +394,7 @@ void StatusBarManager::CreateControllers()
}
else
{
- // 4º) Default Statusbar controller
+ // 4) Default Statusbar controller
pController = new svt::StatusbarController( m_xContext, m_xFrame, aCommandURL, nId );
}
}