summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-09-10 20:13:13 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2014-09-10 20:14:52 +1000
commit8e174eab91acec0f1578af4dac23be76dce700af (patch)
treeeb604e994d1eb043bc362212b33172e0713fb024 /vcl
parentb01bbc3516b63d2772e53fef4dc016788c779612 (diff)
vcl: BitmapEx now states which icon theme is being used for missing image
Change-Id: I83b9c86685f72569c0df88231458183b1ae511c8
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/bitmapex.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/source/gdi/bitmapex.cxx b/vcl/source/gdi/bitmapex.cxx
index 7673f0b3f333..b2d0dde6820e 100644
--- a/vcl/source/gdi/bitmapex.cxx
+++ b/vcl/source/gdi/bitmapex.cxx
@@ -104,7 +104,8 @@ BitmapEx::BitmapEx( const ResId& rResId ) :
#ifdef DBG_UTIL
OStringBuffer aErrorStr(
"BitmapEx::BitmapEx( const ResId& rResId ): could not load image <");
- aErrorStr.append(OUStringToOString(aFileName, RTL_TEXTENCODING_ASCII_US)).append('>');
+ aErrorStr.append(OUStringToOString(aFileName, RTL_TEXTENCODING_ASCII_US)).append("> via icon theme ");
+ aErrorStr.append(OUStringToOString(aIconTheme, RTL_TEXTENCODING_ASCII_US)).append('.');
OSL_FAIL(aErrorStr.getStr());
#endif
}