summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-10 12:41:20 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-10 17:11:49 +0100
commit3abb11b346ff34d501575e67aaf532aca18dddba (patch)
tree5b80724860a807c8d3d3d160067dccbf0826a371 /tools
parent6eeee04bad507a1194bac9709ce4f00322762477 (diff)
Use bool
Change-Id: I7b48d8b9e162f9e4447bfcfcc0bbd1158bd35f5b
Diffstat (limited to 'tools')
-rw-r--r--tools/source/debug/debug.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/source/debug/debug.cxx b/tools/source/debug/debug.cxx
index 7c3616ba5190..19e789c97e58 100644
--- a/tools/source/debug/debug.cxx
+++ b/tools/source/debug/debug.cxx
@@ -108,7 +108,7 @@ struct XtorType
struct DebugData
{
DbgData aDbgData;
- sal_uInt16 bInit;
+ bool bInit;
DbgPrintLine pDbgPrintMsgBox;
DbgPrintLine pDbgPrintWindow;
DbgPrintLine pDbgPrintTestTool;
@@ -160,7 +160,7 @@ struct DebugData
static DebugData aDebugData;
static sal_Char aCurPath[260];
-static int bDbgImplInMain = false;
+static bool bDbgImplInMain = false;
#if defined( WNT )
static CRITICAL_SECTION aImplCritDbgSection;
@@ -372,7 +372,7 @@ namespace
return strlen( _pValue );
}
- void lcl_tryReadConfigBoolean( const sal_Char* _pLine, size_t _nLineLen, const sal_Char* _pKeyName, sal_uIntPtr* _out_pnValue )
+ void lcl_tryReadConfigBoolean( const sal_Char* _pLine, size_t _nLineLen, const sal_Char* _pKeyName, bool* _out_pnValue )
{
sal_Char aBuf[2];
size_t nValueLen = lcl_tryReadConfigString( _pLine, _nLineLen, _pKeyName, aBuf, sizeof( aBuf ) );
@@ -784,8 +784,8 @@ static int ImplStrSearch( const sal_Char* pSearchStr, int nSearchLen,
return 0;
}
-static int ImplDbgFilter( const sal_Char* pFilter, const sal_Char* pMsg,
- int bEmpty )
+static bool ImplDbgFilter( const sal_Char* pFilter, const sal_Char* pMsg,
+ bool bEmpty )
{
int nStrLen = strlen( pFilter );
if ( !nStrLen )