summaryrefslogtreecommitdiff
path: root/tools/source/debug/debug.cxx
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2012-08-18 18:33:10 +0200
committerPhilipp Riemer <ruderphilipp@gmail.com>2012-08-18 18:33:54 +0200
commit920dcaec05984f8dbe0c413460a5d24a64cba149 (patch)
tree523c8dea02adba2ad2eb55d6464d61a5354177a0 /tools/source/debug/debug.cxx
parent15b3bc8916b1e9968c0d75d2ff74d5a38d54e25b (diff)
re-indent falsely formatted code in tools/source
Change-Id: Ibc26313e79dd5f992c4bfb9454a9798fb1a78f00
Diffstat (limited to 'tools/source/debug/debug.cxx')
-rw-r--r--tools/source/debug/debug.cxx38
1 files changed, 19 insertions, 19 deletions
diff --git a/tools/source/debug/debug.cxx b/tools/source/debug/debug.cxx
index d6e9bbc07ede..1f30ef11cd68 100644
--- a/tools/source/debug/debug.cxx
+++ b/tools/source/debug/debug.cxx
@@ -52,7 +52,7 @@
struct PBlock
{
void* aData[PBLOCKCOUNT];
- sal_uInt16 nCount;
+ sal_uInt16 nCount;
PBlock* pPrev;
PBlock* pNext;
};
@@ -62,18 +62,18 @@ class PointerList
private:
PBlock* pFirst;
PBlock* pLast;
- sal_uIntPtr nCount;
+ sal_uIntPtr nCount;
public:
PointerList() { pFirst = NULL; pLast = NULL; nCount = 0; }
~PointerList();
void Add( const void* p );
- sal_Bool Remove( const void* p );
+ sal_Bool Remove( const void* p );
const void* Get( sal_uIntPtr nPos ) const;
- sal_Bool IsIn( const void* p ) const;
- sal_uIntPtr Count() const { return nCount; }
+ sal_Bool IsIn( const void* p ) const;
+ sal_uIntPtr Count() const { return nCount; }
};
// data types
@@ -82,31 +82,31 @@ public:
struct ProfType
{
- sal_uIntPtr nCount;
- sal_uIntPtr nTime;
- sal_uIntPtr nMinTime;
- sal_uIntPtr nMaxTime;
- sal_uIntPtr nStart;
- sal_uIntPtr nContinueTime;
- sal_uIntPtr nContinueStart;
+ sal_uIntPtr nCount;
+ sal_uIntPtr nTime;
+ sal_uIntPtr nMinTime;
+ sal_uIntPtr nMaxTime;
+ sal_uIntPtr nStart;
+ sal_uIntPtr nContinueTime;
+ sal_uIntPtr nContinueStart;
sal_Char aName[DBG_MAXNAME+1];
};
struct XtorType
{
- sal_uIntPtr nCtorCalls;
- sal_uIntPtr nDtorCalls;
- sal_uIntPtr nMaxCount;
- sal_uIntPtr nStatics;
+ sal_uIntPtr nCtorCalls;
+ sal_uIntPtr nDtorCalls;
+ sal_uIntPtr nMaxCount;
+ sal_uIntPtr nStatics;
sal_Char aName[DBG_MAXNAME+1];
- sal_Bool bTest;
+ sal_Bool bTest;
PointerList aThisList;
};
struct DebugData
{
DbgData aDbgData;
- sal_uInt16 bInit;
+ sal_uInt16 bInit;
DbgPrintLine pDbgPrintMsgBox;
DbgPrintLine pDbgPrintWindow;
DbgPrintLine pDbgPrintTestTool;
@@ -164,7 +164,7 @@ static int bDbgImplInMain = sal_False;
static CRITICAL_SECTION aImplCritDbgSection;
#endif
-static sal_Bool bImplCritDbgSectionInit = sal_False;
+static sal_Bool bImplCritDbgSectionInit = sal_False;
void ImplDbgInitLock()
{