summaryrefslogtreecommitdiff
path: root/framework/source
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-07-11 16:00:53 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-07-11 16:02:13 +0200
commit386af68921d8ae658b3704943b5f58603d7fbf83 (patch)
treec487dc11d920658de69e40564da395ac3f46a416 /framework/source
parent7450f19f62194f79349fa6d3bdb9733d7110a143 (diff)
remove duplicate debug area for framework/
It'd be probably better to rename all the cryptic abbreviations instead, but two different debug areas for the same thing simply doesn't work well. Change-Id: I895fadb47ebf408a36d13dbb32386caa3f472f1c
Diffstat (limited to 'framework/source')
-rw-r--r--framework/source/fwe/classes/addonsoptions.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/fwe/classes/addonsoptions.cxx b/framework/source/fwe/classes/addonsoptions.cxx
index ec968416d855..6bbb176dc722 100644
--- a/framework/source/fwe/classes/addonsoptions.cxx
+++ b/framework/source/fwe/classes/addonsoptions.cxx
@@ -651,7 +651,7 @@ static Image ScaleImage( const Image &rImage, bool bBig )
{
Size aSize = ToolBox::GetDefaultImageSize(bBig);
BitmapEx aScaleBmp(rImage.GetBitmapEx());
- SAL_INFO("framework", "Addons: expensive scale image from "
+ SAL_INFO("fwk", "Addons: expensive scale image from "
<< aScaleBmp.GetSizePixel() << " to " << aSize);
aScaleBmp.Scale(aSize, BMP_SCALE_BESTQUALITY);
return Image(aScaleBmp);
@@ -664,7 +664,7 @@ Image AddonsOptions_Impl::GetImageFromURL( const OUString& aURL, sal_Bool bBig,
int nIdx = (int)eSize;
int nOtherIdx = nIdx ? 0 : 1;
- SAL_INFO("framework", "Expensive: Addons GetImageFromURL " << aURL <<
+ SAL_INFO("fwk", "Expensive: Addons GetImageFromURL " << aURL <<
" big " << (bBig?"big":"litte") <<
" scale " << (bNoScale ? "noscale" : "scale"));
@@ -681,7 +681,7 @@ Image AddonsOptions_Impl::GetImageFromURL( const OUString& aURL, sal_Bool bBig,
aImage = ScaleImage(ReadImageFromURL(rEntry.aURL[nOtherIdx]), bBig);
rEntry.aImage[nIdx] = aImage;
if (!rEntry.aImage[nIdx])
- SAL_WARN("framework", "failed to load addons image " << aURL);
+ SAL_WARN("fwk", "failed to load addons image " << aURL);
}
// FIXME: bNoScale is not terribly meaningful or useful