diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/framework/configuration/ResourceFactoryManager.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/remotecontrol/Communicator.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/remotecontrol/OSXBluetooth.mm | 2 | ||||
-rw-r--r-- | sd/source/ui/view/viewshel.cxx | 2 |
5 files changed, 5 insertions, 7 deletions
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index a2a9e5216fd9..b4ba29f8c2ad 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -1861,7 +1861,7 @@ void PowerPointExport::WriteShapeTree( const FSHelperPtr& pFS, PageType ePageTyp } if ( GetShapeByIndex( GetCurrentGroupIndex(), true ) ) { - SAL_INFO("sd.eppt", "mType: \"" << mType.getStr() << "\"\n"); + SAL_INFO("sd.eppt", "mType: " << mType); aDML.WriteShape( mXShape ); } } diff --git a/sd/source/ui/framework/configuration/ResourceFactoryManager.cxx b/sd/source/ui/framework/configuration/ResourceFactoryManager.cxx index 15ce1e9fdfa0..6b7d73cc4d65 100644 --- a/sd/source/ui/framework/configuration/ResourceFactoryManager.cxx +++ b/sd/source/ui/framework/configuration/ResourceFactoryManager.cxx @@ -82,9 +82,7 @@ void ResourceFactoryManager::AddFactory ( maFactoryPatternList.push_back(FactoryPatternList::value_type(rsURL, rxFactory)); #if defined VERBOSE && VERBOSE>=1 - SAL_INFO("sd",("ResourceFactoryManager::AddFactory pattern %s %x\n", - OUStringToOString(rsURL, RTL_TEXTENCODING_UTF8).getStr(), - rxFactory.get()); + SAL_INFO("sd","ResourceFactoryManager::AddFactory pattern " << rsURL << std::hex << rxFactory.get()); #endif } else diff --git a/sd/source/ui/remotecontrol/Communicator.cxx b/sd/source/ui/remotecontrol/Communicator.cxx index f983937554ac..43e069d0e2fa 100644 --- a/sd/source/ui/remotecontrol/Communicator.cxx +++ b/sd/source/ui/remotecontrol/Communicator.cxx @@ -114,7 +114,7 @@ void Communicator::execute() } } - SAL_INFO ("sdremote", "Exiting transmission loop\n"); + SAL_INFO ("sdremote", "Exiting transmission loop"); disposeListener(); diff --git a/sd/source/ui/remotecontrol/OSXBluetooth.mm b/sd/source/ui/remotecontrol/OSXBluetooth.mm index e90e29d46217..4ccf696809f3 100644 --- a/sd/source/ui/remotecontrol/OSXBluetooth.mm +++ b/sd/source/ui/remotecontrol/OSXBluetooth.mm @@ -37,7 +37,7 @@ { (void) rfcommChannel; - SAL_INFO( "sdremote.bluetooth", "ChannelDelegate::rfcommChannelClosed()\n"); + SAL_INFO( "sdremote.bluetooth", "ChannelDelegate::rfcommChannelClosed()"); if ( pSocket ) { diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx index f54d8df16cd1..e997b80f3fee 100644 --- a/sd/source/ui/view/viewshel.cxx +++ b/sd/source/ui/view/viewshel.cxx @@ -1398,7 +1398,7 @@ void ViewShell::ExecReq( SfxRequest& rReq ) css::uno::Reference<css::accessibility::XAccessible> ViewShell::CreateAccessibleDocumentView (::sd::Window* ) { - OSL_FAIL("ViewShell::CreateAccessibleDocumentView should not be called!, perhaps Meyers, 3rd edition, Item 9:\n"); + OSL_FAIL("ViewShell::CreateAccessibleDocumentView should not be called!, perhaps Meyers, 3rd edition, Item 9:"); return css::uno::Reference<css::accessibility::XAccessible> (); } |