summaryrefslogtreecommitdiffstats
path: root/canvas
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-09-02 01:05:33 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-09-02 01:31:13 +0200
commitbe7d3df141bff7560545b4a54a7d8d99d730b17e (patch)
tree58f1e383978a046d9a260f27e7bf74949becfa57 /canvas
parentfix crash when creating chart (diff)
downloadcore-be7d3df141bff7560545b4a54a7d8d99d730b17e.tar.gz
core-be7d3df141bff7560545b4a54a7d8d99d730b17e.zip
remove SAL_DEBUGs introduced earlier
Change-Id: I901188b5b0a3e64e2407d039dd80f89cce8cf6de
Diffstat (limited to 'canvas')
-rw-r--r--canvas/source/factory/cf_service.cxx19
-rw-r--r--canvas/source/opengl/ogl_spritedevicehelper.cxx1
2 files changed, 0 insertions, 20 deletions
diff --git a/canvas/source/factory/cf_service.cxx b/canvas/source/factory/cf_service.cxx
index 07ee8b72d0e9..6d413fdf62f9 100644
--- a/canvas/source/factory/cf_service.cxx
+++ b/canvas/source/factory/cf_service.cxx
@@ -169,11 +169,6 @@ CanvasFactory::CanvasFactory( Reference<XComponentContext> const & xContext ) :
xNameAccess, UNO_QUERY_THROW);
Sequence<OUString> serviceNames = xNameAccess->getElementNames();
- for (sal_Int32 i = 0; i < serviceNames.getLength(); ++i)
- {
- SAL_DEBUG(serviceNames[i]);
- }
-
const OUString* pCurr = serviceNames.getConstArray();
const OUString* const pEnd = pCurr + serviceNames.getLength();
while( pCurr != pEnd )
@@ -188,25 +183,13 @@ CanvasFactory::CanvasFactory( Reference<XComponentContext> const & xContext ) :
if( (xEntryNameAccess->getByName("PreferredImplementations") >>= implementationList) )
{
m_aAvailableImplementations.push_back( std::make_pair(*pCurr,implementationList) );
- for (sal_Int32 i = 0; i < implementationList.getLength(); ++i)
- {
- SAL_DEBUG("available :" << implementationList[i]);
- }
}
if( (xEntryNameAccess->getByName("AcceleratedImplementations") >>= implementationList) )
{
- for (sal_Int32 i = 0; i < implementationList.getLength(); ++i)
- {
- SAL_DEBUG("accelerated: " <<implementationList[i]);
- }
m_aAcceleratedImplementations.push_back( std::make_pair(*pCurr,implementationList) );
}
if( (xEntryNameAccess->getByName("AntialiasingImplementations") >>= implementationList) )
{
- for (sal_Int32 i = 0; i < implementationList.getLength(); ++i)
- {
- SAL_DEBUG("aa implemented: " << implementationList[i]);
- }
m_aAAImplementations.push_back( std::make_pair(*pCurr,implementationList) );
}
@@ -294,7 +277,6 @@ Reference<XInterface> CanvasFactory::use(
Reference<XComponentContext> const & xContext ) const
{
try {
- SAL_DEBUG("use: " << serviceName);
return m_xContext->getServiceManager()->createInstanceWithArgumentsAndContext(
serviceName, args, xContext);
}
@@ -337,7 +319,6 @@ Reference<XInterface> CanvasFactory::lookupAndUse(
Reference<XComponentContext> const & xContext ) const
{
::osl::MutexGuard guard(m_mutex);
- SAL_DEBUG(serviceName);
// forcing last entry from impl list, if config flag set
bool bForceLastEntry(false);
diff --git a/canvas/source/opengl/ogl_spritedevicehelper.cxx b/canvas/source/opengl/ogl_spritedevicehelper.cxx
index 2e4b592c1f80..58a59ea1fe1c 100644
--- a/canvas/source/opengl/ogl_spritedevicehelper.cxx
+++ b/canvas/source/opengl/ogl_spritedevicehelper.cxx
@@ -389,7 +389,6 @@ namespace oglcanvas
uno::Reference<rendering::XColorSpace> SpriteDeviceHelper::getColorSpace() const
{
- SAL_DEBUG("called SpriteDeviceHelper::getColorSpace()");
// always the same
return uno::Reference<rendering::XColorSpace>(
::canvas::tools::getStdColorSpace(),