Kaydet (Commit) 386af689 authored tarafından Luboš Luňák's avatar Luboš Luňák

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
üst 7450f19f
...@@ -651,7 +651,7 @@ static Image ScaleImage( const Image &rImage, bool bBig ) ...@@ -651,7 +651,7 @@ static Image ScaleImage( const Image &rImage, bool bBig )
{ {
Size aSize = ToolBox::GetDefaultImageSize(bBig); Size aSize = ToolBox::GetDefaultImageSize(bBig);
BitmapEx aScaleBmp(rImage.GetBitmapEx()); 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.GetSizePixel() << " to " << aSize);
aScaleBmp.Scale(aSize, BMP_SCALE_BESTQUALITY); aScaleBmp.Scale(aSize, BMP_SCALE_BESTQUALITY);
return Image(aScaleBmp); return Image(aScaleBmp);
...@@ -664,7 +664,7 @@ Image AddonsOptions_Impl::GetImageFromURL( const OUString& aURL, sal_Bool bBig, ...@@ -664,7 +664,7 @@ Image AddonsOptions_Impl::GetImageFromURL( const OUString& aURL, sal_Bool bBig,
int nIdx = (int)eSize; int nIdx = (int)eSize;
int nOtherIdx = nIdx ? 0 : 1; int nOtherIdx = nIdx ? 0 : 1;
SAL_INFO("framework", "Expensive: Addons GetImageFromURL " << aURL << SAL_INFO("fwk", "Expensive: Addons GetImageFromURL " << aURL <<
" big " << (bBig?"big":"litte") << " big " << (bBig?"big":"litte") <<
" scale " << (bNoScale ? "noscale" : "scale")); " scale " << (bNoScale ? "noscale" : "scale"));
...@@ -681,7 +681,7 @@ Image AddonsOptions_Impl::GetImageFromURL( const OUString& aURL, sal_Bool bBig, ...@@ -681,7 +681,7 @@ Image AddonsOptions_Impl::GetImageFromURL( const OUString& aURL, sal_Bool bBig,
aImage = ScaleImage(ReadImageFromURL(rEntry.aURL[nOtherIdx]), bBig); aImage = ScaleImage(ReadImageFromURL(rEntry.aURL[nOtherIdx]), bBig);
rEntry.aImage[nIdx] = aImage; rEntry.aImage[nIdx] = aImage;
if (!rEntry.aImage[nIdx]) 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 // FIXME: bNoScale is not terribly meaningful or useful
......
...@@ -147,7 +147,6 @@ certain functionality. ...@@ -147,7 +147,6 @@ certain functionality.
@section framework @section framework
@li @c framework
@li @c fwk - framework (abbreviation) @li @c fwk - framework (abbreviation)
@li @c fwk.desktop @li @c fwk.desktop
@li @c fwk.dispatch @li @c fwk.dispatch
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment