summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-04 19:30:30 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-11 23:41:06 +0100
commitea9aeb6ad43ef7b7ec2f6378a5fc90f323414ed0 (patch)
treeced7e9b925ac6c965ccb9771e85edab61a1b7395
parent81888a89544ce4f93a3693cb8f0e345ac2f293ff (diff)
Move DBG_ERROR to OSL_FAIL for a macro
-rw-r--r--vcl/win/source/gdi/salprn.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/win/source/gdi/salprn.cxx b/vcl/win/source/gdi/salprn.cxx
index 87f851e2ef0d..16c7439fbbdd 100644
--- a/vcl/win/source/gdi/salprn.cxx
+++ b/vcl/win/source/gdi/salprn.cxx
@@ -82,14 +82,14 @@
} \
__except(WinSalInstance::WorkaroundExceptionHandlingInUSER32Lib(GetExceptionCode(), GetExceptionInformation()))\
{ \
- DBG_ERROR( mes ); \
+ OSL_FAIL( mes ); \
p->markInvalid(); \
}
#define CATCH_DRIVER_EX_END_2(mes) \
} \
__except(WinSalInstance::WorkaroundExceptionHandlingInUSER32Lib(GetExceptionCode(), GetExceptionInformation()))\
{ \
- DBG_ERROR( mes ); \
+ OSL_FAIL( mes ); \
}
#endif