diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-03-28 16:43:39 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-03-28 16:52:36 +0200 |
commit | ae00e71afd36f7215669c34e8ea8cafaeed6e468 (patch) | |
tree | de3aa1726cb66a996f148e2a8ce8207ae4c2b612 /include/tools/debug.hxx | |
parent | b6f77d2702721d25ae7be5a749b65a53f55f5ee2 (diff) |
Bin rest of DBG_WARNING[123]
Change-Id: Iaaf36d012e353f73f083c9c0ebbbb6d0953b16c8
Diffstat (limited to 'include/tools/debug.hxx')
-rw-r--r-- | include/tools/debug.hxx | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/include/tools/debug.hxx b/include/tools/debug.hxx index 5574d0d4683e..de606a1bd4d3 100644 --- a/include/tools/debug.hxx +++ b/include/tools/debug.hxx @@ -35,7 +35,7 @@ Because the assertion macro (DBG_ASSERT) has been used for true assertions as well as to log warnings, it maps to SAL_WARN instead of standard assert. The warning and error macros (DBG_ASSERTWARNING, - DBG_WARNING, DBG_WARNING1, ..., DBG_WARNING3, DBG_ERRORFILE) all map to + DBG_WARNING, DBG_ERRORFILE) all map to SAL_INFO. */ @@ -317,12 +317,6 @@ public: #define DBG_WARNING( aWarning ) \ SAL_DETAIL_INFO_IF_FORMAT(true, "legacy.tools", aWarning) -#define DBG_WARNING1( aWarning, x1 ) \ - SAL_DETAIL_INFO_IF_FORMAT(true, "legacy.tools", aWarning, x1) -#define DBG_WARNING2( aWarning, x1, x2 ) \ - SAL_DETAIL_INFO_IF_FORMAT(true, "legacy.tools", aWarning, x1, x2) -#define DBG_WARNING3( aWarning, x1, x2, x3 ) \ - SAL_DETAIL_INFO_IF_FORMAT(true, "legacy.tools", aWarning, x1, x2, x3) #define DBG_ERRORFILE( aError ) \ SAL_DETAIL_INFO_IF_FORMAT(true, "legacy.tools", aError, __FILE__, __LINE__) @@ -371,9 +365,6 @@ typedef const sal_Char* (*DbgUsr)(const void* pThis ); #define DBG_ASSERTWARNING( sCon, aWarning ) ((void)0) #define DBG_ASSERT( sCon, aError ) ((void)0) #define DBG_WARNING( aWarning ) ((void)0) -#define DBG_WARNING1( aWarning, x1 ) ((void)0) -#define DBG_WARNING2( aWarning, x1, x2 ) ((void)0) -#define DBG_WARNING3( aWarning, x1, x2, x3 ) ((void)0) #define DBG_ERRORFILE( aError ) ((void)0) #define DBG_TESTSOLARMUTEX() ((void)0) |