[Libreoffice-commits] core.git: vcl/source

Tor Lillqvist tml at collabora.com
Mon Nov 10 04:35:10 PST 2014


 vcl/source/gdi/bitmapex.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7623a4832441691a486673cea981ef32b8d72ae7
Author: Tor Lillqvist <tml at collabora.com>
Date:   Mon Nov 10 14:32:09 2014 +0200

    Fix error: use of undeclared identifier 'aFileName'
    
    Change-Id: Iff5984a0ab3fec6070cd29a80752f1a8bec1daba

diff --git a/vcl/source/gdi/bitmapex.cxx b/vcl/source/gdi/bitmapex.cxx
index 330bd59..687cc94 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


More information about the Libreoffice-commits mailing list