diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-09-23 07:19:08 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-09-25 19:24:23 +0200 |
commit | 98de5b40c8a3fd4e57477b6d994e3b1472207f71 (patch) | |
tree | 567fdbbaecbddbfc19f28a08da5d1f6d5207748c /framework | |
parent | 0552a91acde9dce28c0d92c552d21fbadfcb9184 (diff) |
Related: fdo#38838 remove UniString::EqualsIgnoreCaseAscii
Change-Id: Ib5c3a2daa4a48bc286b14fa2cebb3306ea0012bc
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/services/autorecovery.cxx | 2 | ||||
-rw-r--r-- | framework/source/services/desktop.cxx | 2 | ||||
-rw-r--r-- | framework/source/services/frame.cxx | 1 | ||||
-rw-r--r-- | framework/source/services/sessionlistener.cxx | 1 | ||||
-rw-r--r-- | framework/source/services/tabwindowservice.cxx | 2 | ||||
-rw-r--r-- | framework/source/services/taskcreatorsrv.cxx | 1 | ||||
-rw-r--r-- | framework/source/services/urltransformer.cxx | 5 |
7 files changed, 1 insertions, 13 deletions
diff --git a/framework/source/services/autorecovery.cxx b/framework/source/services/autorecovery.cxx index 237c0db7f61e..b03c7e9a1a8e 100644 --- a/framework/source/services/autorecovery.cxx +++ b/framework/source/services/autorecovery.cxx @@ -454,7 +454,7 @@ void SAL_CALL AutoRecovery::dispatch(const css::util::URL& const css::uno::Sequence< css::beans::PropertyValue >& lArguments) throw(css::uno::RuntimeException) { - SAL_INFO("fwk.autorecovery", "AutoRecovery::dispatch() starts ..." << OUString(aURL.Complete)); + SAL_INFO("fwk.autorecovery", "AutoRecovery::dispatch() starts ..." << aURL.Complete); // valid request ? sal_Int32 eNewJob = AutoRecovery::implst_classifyJob(aURL); diff --git a/framework/source/services/desktop.cxx b/framework/source/services/desktop.cxx index d39c90eed17d..af9776ea9110 100644 --- a/framework/source/services/desktop.cxx +++ b/framework/source/services/desktop.cxx @@ -1941,7 +1941,6 @@ sal_Bool Desktop::implcp_ctor( const css::uno::Reference< css::uno::XComponentCo ); } -//***************************************************************************************************************** // We work with valid listener only. sal_Bool Desktop::implcp_addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) { @@ -1951,7 +1950,6 @@ sal_Bool Desktop::implcp_addEventListener( const css::uno::Reference< css::lang: ); } -//***************************************************************************************************************** // We work with valid listener only. sal_Bool Desktop::implcp_removeEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) { diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index e0d138881f1d..23f8cc58ff14 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -3255,7 +3255,6 @@ sal_Bool Frame::implcp_windowDeactivated( const css::lang::EventObject& aEvent ) ); } -//***************************************************************************************************************** sal_Bool Frame::implcp_disposing( const css::lang::EventObject& aEvent ) { return ( diff --git a/framework/source/services/sessionlistener.cxx b/framework/source/services/sessionlistener.cxx index ff9335c2117d..d85ba149bfd5 100644 --- a/framework/source/services/sessionlistener.cxx +++ b/framework/source/services/sessionlistener.cxx @@ -66,7 +66,6 @@ using namespace com::sun::star::container; namespace framework{ -//*********************************************** // XInterface, XTypeProvider, XServiceInfo DEFINE_XSERVICEINFO_ONEINSTANCESERVICE_2( diff --git a/framework/source/services/tabwindowservice.cxx b/framework/source/services/tabwindowservice.cxx index 6d7bf4e6317c..5cb09b9ec20a 100644 --- a/framework/source/services/tabwindowservice.cxx +++ b/framework/source/services/tabwindowservice.cxx @@ -422,9 +422,7 @@ TTabPageInfoHash::iterator TabWindowService::impl_getTabPageInfo(::sal_Int32 nID return pIt; } -//***************************************************************************************************************** // TabWindowService -//***************************************************************************************************************** FwkTabWindow* TabWindowService::mem_TabWin () { FwkTabWindow* pWin = NULL; diff --git a/framework/source/services/taskcreatorsrv.cxx b/framework/source/services/taskcreatorsrv.cxx index b8942958cfde..e265e2c04e8b 100644 --- a/framework/source/services/taskcreatorsrv.cxx +++ b/framework/source/services/taskcreatorsrv.cxx @@ -330,7 +330,6 @@ void TaskCreatorService::implts_establishTitleBarUpdate( const css::uno::Referen xInit->initialize(lInitData); } -//----------------------------------------------- OUString TaskCreatorService::impl_filterNames( const OUString& sName ) { OUString sFiltered; diff --git a/framework/source/services/urltransformer.cxx b/framework/source/services/urltransformer.cxx index 19bca3b684ad..13e42d977696 100644 --- a/framework/source/services/urltransformer.cxx +++ b/framework/source/services/urltransformer.cxx @@ -325,11 +325,6 @@ OUString SAL_CALL URLTransformer::getPresentation( const URL& aURL return OUString(); } -//_________________________________________________________________________________________________________________ -// debug methods -//_________________________________________________________________________________________________________________ - - } // namespace framework /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |