summaryrefslogtreecommitdiff
path: root/shell/source/win32/shlxthandler/util/utilities.cxx
diff options
context:
space:
mode:
authorChristina Rossmanith <ChrRossmanith@web.de>2011-04-13 21:17:34 +0200
committerChristina Rossmanith <ChrRossmanith@web.de>2011-04-19 20:36:12 +0200
commite198be5988cb150de99e9f2e52c64fdc72036042 (patch)
treeabb79d0eddb805593b9b76d44ee439454b87d162 /shell/source/win32/shlxthandler/util/utilities.cxx
parentb0b3e5fdf811fa5939366f378a22755fb80e51ab (diff)
Removed dbgmacros.{ch}xx / use OSL_{ENSURE,POSTCOND} instead
Diffstat (limited to 'shell/source/win32/shlxthandler/util/utilities.cxx')
-rw-r--r--shell/source/win32/shlxthandler/util/utilities.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/source/win32/shlxthandler/util/utilities.cxx b/shell/source/win32/shlxthandler/util/utilities.cxx
index 06619a485f34..48783978e7ca 100644
--- a/shell/source/win32/shlxthandler/util/utilities.cxx
+++ b/shell/source/win32/shlxthandler/util/utilities.cxx
@@ -31,7 +31,6 @@
#include "internal/config.hxx"
-#include "internal/dbgmacros.hxx"
#include "internal/utilities.hxx"
//-----------------------------
@@ -85,7 +84,7 @@ std::wstring GetResString(int ResId)
int rc = LoadStringW( GetModuleHandleW(MODULE_NAME), ResId, szResStr, sizeof(szResStr) );
OutputDebugStringFormat( "GetResString: read %d chars\n", rc );
- ENSURE(rc, "String resource not found");
+ OSL_ENSURE(rc, "String resource not found");
return std::wstring(szResStr);
}