summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-05 13:10:19 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-11 23:41:07 +0100
commit38dfb9cf5d859828ce5a6990ea8a4f8c50ebc3d2 (patch)
tree5095a0ec5b852e65de5d9c504849c966004d5a6d /tools
parentda708864a788a6f1d5daad9207d4454e2fc1993d (diff)
Remove now unused DBG_ERROR[1-5]
Diffstat (limited to 'tools')
-rw-r--r--tools/inc/tools/debug.hxx50
1 files changed, 0 insertions, 50 deletions
diff --git a/tools/inc/tools/debug.hxx b/tools/inc/tools/debug.hxx
index 2f4d67a6e457..947827b42f88 100644
--- a/tools/inc/tools/debug.hxx
+++ b/tools/inc/tools/debug.hxx
@@ -619,51 +619,6 @@ do \
DbgWarning( aWarning, __FILE__, __LINE__ ); \
} while(0)
-#define DBG_ERROR1( aError, x1 ) \
-do \
-{ \
- if ( DbgIsErrorOut() ) \
- { \
- DbgOutTypef( DBG_OUT_ERROR, aError, \
- x1 ); \
- } \
-} while(0)
-#define DBG_ERROR2( aError, x1, x2 ) \
-do \
-{ \
- if ( DbgIsErrorOut() ) \
- { \
- DbgOutTypef( DBG_OUT_ERROR, aError, \
- x1, x2 ); \
- } \
-} while(0)
-#define DBG_ERROR3( aError, x1, x2, x3 ) \
-do \
-{ \
- if ( DbgIsErrorOut() ) \
- { \
- DbgOutTypef( DBG_OUT_ERROR, aError, \
- x1, x2, x3 ); \
- } \
-} while(0)
-#define DBG_ERROR4( aError, x1, x2, x3, x4 ) \
-do \
-{ \
- if ( DbgIsErrorOut() ) \
- { \
- DbgOutTypef( DBG_OUT_ERROR, aError, \
- x1, x2, x3, x4 ); \
- } \
-} while(0)
-#define DBG_ERROR5( aError, x1, x2, x3, x4, x5 ) \
-do \
-{ \
- if ( DbgIsErrorOut() ) \
- { \
- DbgOutTypef( DBG_OUT_ERROR, aError, \
- x1, x2, x3, x4, x5 ); \
- } \
-} while(0)
#define DBG_ERRORFILE( aError ) \
do \
{ \
@@ -751,11 +706,6 @@ typedef const sal_Char* (*DbgUsr)(const void* pThis );
#define DBG_WARNING4( aWarning, x1, x2, x3, x4 ) ((void)0)
#define DBG_WARNING5( aWarning, x1, x2, x3, x4, x5 ) ((void)0)
#define DBG_WARNINGFILE( aWarning ) ((void)0)
-#define DBG_ERROR1( aError, x1 ) ((void)0)
-#define DBG_ERROR2( aError, x1, x2 ) ((void)0)
-#define DBG_ERROR3( aError, x1, x2, x3 ) ((void)0)
-#define DBG_ERROR4( aError, x1, x2, x3, x4 ) ((void)0)
-#define DBG_ERROR5( aError, x1, x2, x3, x4, x5 ) ((void)0)
#define DBG_ERRORFILE( aError ) ((void)0)
#define DBG_TESTSOLARMUTEX() ((void)0)