summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-11-10 14:32:09 +0200
committerTor Lillqvist <tml@collabora.com>2014-11-10 14:33:15 +0200
commit7623a4832441691a486673cea981ef32b8d72ae7 (patch)
treeb0ecff3c5e3f3eb0793be7f3063dde3c65eff8f4
parent16068663e2aa984388be5f774b8f1917c12bf6f3 (diff)
Fix error: use of undeclared identifier 'aFileName'
Change-Id: Iff5984a0ab3fec6070cd29a80752f1a8bec1daba
-rw-r--r--vcl/source/gdi/bitmapex.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/bitmapex.cxx b/vcl/source/gdi/bitmapex.cxx
index 330bd59a69b1..687cc943b09a 100644
--- a/vcl/source/gdi/bitmapex.cxx
+++ b/vcl/source/gdi/bitmapex.cxx
@@ -115,7 +115,7 @@ void BitmapEx::loadFromIconTheme( const OUString& rIconName )
#ifdef DBG_UTIL
OStringBuffer aErrorStr(
"BitmapEx::BitmapEx(): could not load image <");
- aErrorStr.append(OUStringToOString(aFileName, RTL_TEXTENCODING_ASCII_US)).append("> via icon theme ");
+ aErrorStr.append(OUStringToOString(rIconName, RTL_TEXTENCODING_ASCII_US)).append("> via icon theme ");
aErrorStr.append(OUStringToOString(aIconTheme, RTL_TEXTENCODING_ASCII_US)).append('.');
OSL_FAIL(aErrorStr.getStr());
#endif