summaryrefslogtreecommitdiff
path: root/automation/source/server/recorder.hxx
diff options
context:
space:
mode:
authorMikhail Voytenko <mav@openoffice.org>2011-01-12 11:34:50 +0100
committerMikhail Voytenko <mav@openoffice.org>2011-01-12 11:34:50 +0100
commit2b42b8533640fc34709c8d702d0b0448489ed73f (patch)
treef93556e25d37f17854c841ad112231f4864e5acf /automation/source/server/recorder.hxx
parente7ee592b13a604da92164d008a3941ef8329f16e (diff)
removetooltypes01: #i112600# remove tooltypes from automation
Diffstat (limited to 'automation/source/server/recorder.hxx')
-rw-r--r--automation/source/server/recorder.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/automation/source/server/recorder.hxx b/automation/source/server/recorder.hxx
index 5a409513cacc..cb59f02b76cc 100644
--- a/automation/source/server/recorder.hxx
+++ b/automation/source/server/recorder.hxx
@@ -52,15 +52,15 @@ private:
String aKeyString;
rtl::OString aKeyUniqueID; // has to be remembered seperately since Window might be gone when needed
Window* pKeyWin;
- BOOL bKeyFollowFocus;
+ sal_Bool bKeyFollowFocus;
AutoTimer aHookRefresh;
void AddEventHooks();
void RemoveEventHooks();
DECL_LINK( HookRefreshHdl, void* );
- void LogVCL( rtl::OString aParentID, USHORT nVCLWindowType, rtl::OString aID, String aMethod, USHORT aParam );
- void LogVCL( rtl::OString aParentID, USHORT nVCLWindowType, rtl::OString aID, String aMethod );
+ void LogVCL( rtl::OString aParentID, sal_uInt16 nVCLWindowType, rtl::OString aID, String aMethod, sal_uInt16 aParam );
+ void LogVCL( rtl::OString aParentID, sal_uInt16 nVCLWindowType, rtl::OString aID, String aMethod );
static MacroRecorder *pMacroRecorder;
@@ -69,15 +69,15 @@ private:
void CheckDelete();
// Actions to perform
- BOOL m_bRecord;
- BOOL m_bLog;
+ sal_Bool m_bRecord;
+ sal_Bool m_bLog;
public:
- void SetActionRecord( BOOL bRecord = TRUE ) { m_bRecord = bRecord; CheckDelete(); };
- void SetActionLog( BOOL bLog = TRUE ) { m_bLog = bLog; CheckDelete(); };
+ void SetActionRecord( sal_Bool bRecord = sal_True ) { m_bRecord = bRecord; CheckDelete(); };
+ void SetActionLog( sal_Bool bLog = sal_True ) { m_bLog = bLog; CheckDelete(); };
static MacroRecorder* GetMacroRecorder();
- static BOOL HasMacroRecorder();
+ static sal_Bool HasMacroRecorder();
};