diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-25 14:06:47 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-25 16:17:09 +0100 |
commit | 86088dda6e893faaecfea19bad6e0e6c1ffa657c (patch) | |
tree | 8e64e634135436e5026d5263d6827307b86151dd /include/tools/debug.hxx | |
parent | 7bb5f9e1a206e1f62df5d72947d564af2aaa09ca (diff) |
osl_setDetailedDebugMessageFunc is effectively doing nothing
...since the osl/diagnose.h macros got rebased onto sal/log.hxx, so remove the
corresponding tools/debug.h functionality.
Change-Id: Ife4b5b1a2608230d0dbfc3fa8852243c89ed292f
Diffstat (limited to 'include/tools/debug.hxx')
-rw-r--r-- | include/tools/debug.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/tools/debug.hxx b/include/tools/debug.hxx index 4c79c0fe50a8..be726bb688e6 100644 --- a/include/tools/debug.hxx +++ b/include/tools/debug.hxx @@ -79,7 +79,6 @@ struct DbgData bool bOverwrite; sal_uIntPtr nTraceOut; sal_uIntPtr nErrorOut; - bool bHookOSLAssert; sal_Char aDebugName[260]; sal_Char aInclFilter[512]; sal_Char aExclFilter[512]; @@ -108,16 +107,10 @@ struct DbgDataType #define DBG_FUNC_SETTESTSOLARMUTEX 14 #define DBG_FUNC_TESTSOLARMUTEX 15 #define DBG_FUNC_PRINTFILE 16 -#define DBG_FUNC_UPDATEOSLHOOK 19 #define DBG_FUNC_SET_ABORT 20 TOOLS_DLLPUBLIC void* DbgFunc( sal_uInt16 nAction, void* pData = NULL ); -inline void DbgUpdateOslHook( DbgData* pData ) -{ - DbgFunc( DBG_FUNC_UPDATEOSLHOOK, pData ); -} - inline void DbgDebugStart() { DbgFunc( DBG_FUNC_DEBUGSTART ); |