diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2009-03-18 10:45:43 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2009-03-18 10:45:43 +0000 |
commit | 4140aa38e45d3992cd339e7c5aca129cfa8dbe5d (patch) | |
tree | 852f23042088780916a7a557b8be72b63665eac8 /automation/source | |
parent | 76afd6157a11407983da6f8beecadec31b91e71d (diff) |
CWS-TOOLING: integrate CWS oooimprovement3_DEV300
2009-02-26 16:28:11 +0100 jsk r268533 : #i99197#
2009-02-26 15:03:06 +0100 jsk r268524 : #i99197#
2009-02-26 15:00:34 +0100 jsk r268522 : i99187#
2009-02-23 13:37:17 +0100 b_michaelsen r268353 : #i99491# fixing OStringBuffer construction. thanks, tono
2009-02-18 17:31:06 +0100 b_michaelsen r268247 : cleaned mixup between base and brand layer
2009-02-17 15:00:48 +0100 b_michaelsen r268172 : fixed treeopt.cxx
2009-02-17 14:59:04 +0100 b_michaelsen r268171 : catching all exceptions
2009-02-16 14:06:33 +0100 jsk r267805 : #i99197#
2009-02-16 14:05:30 +0100 jsk r267804 : #i99197#
2009-02-16 14:04:35 +0100 jsk r267803 : #i99197#
2009-02-13 17:45:43 +0100 b_michaelsen r267735 : #i98981# ensure logging of accelerators
2009-02-13 16:53:59 +0100 b_michaelsen r267732 : #i98741# deploying usage tracking enabling xcu with BUILD SPECIAL
2009-02-13 16:52:40 +0100 b_michaelsen r267731 : #i98741# delivering usage tracking enabling xcu
2009-02-13 16:43:55 +0100 b_michaelsen r267730 : #i98981# adding abbrevation for accerators
2009-02-12 16:53:59 +0100 b_michaelsen r267678 : #i98981# diasble logging of key events
2009-02-12 16:11:23 +0100 b_michaelsen r267673 : #i98981# reliable way to toggle usage tracking
2009-02-12 16:10:13 +0100 b_michaelsen r267672 : #i98981# reliable way to toggle usage tracking
Diffstat (limited to 'automation/source')
-rw-r--r-- | automation/source/server/recorder.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/automation/source/server/recorder.cxx b/automation/source/server/recorder.cxx index 98e09de655ad..49f6f7608ef0 100644 --- a/automation/source/server/recorder.cxx +++ b/automation/source/server/recorder.cxx @@ -180,7 +180,7 @@ IMPL_LINK( MacroRecorder, EventListener, VclSimpleEvent*, pEvent ) } if ( m_bLog ) { - LogVCL( SmartId(), 0, aKeyUniqueID, CUniString("TypeKeys"), aKeyString.Len() ); +// HACK Too many KeyEvents generated LogVCL( SmartId(), 0, aKeyUniqueID, CUniString("TypeKeys"), aKeyString.Len() ); } // cleanup aKeyString.Erase(); @@ -682,8 +682,8 @@ IMPL_LINK( MacroRecorder, EventListener, VclSimpleEvent*, pEvent ) aKeyUniqueID = pIdWin->GetSmartUniqueOrHelpId(); if ( m_bLog ) { - if ( aKeyString.Len() == 0 ) - LogVCL( SmartId(), 0, aKeyUniqueID, CUniString("TypeKeysStart") ); +// HACK Too many KeyEvents generated if ( aKeyString.Len() == 0 ) +// HACK Too many KeyEvents generated LogVCL( SmartId(), 0, aKeyUniqueID, CUniString("TypeKeysStart") ); } if ( ( !aKeyCode.IsMod1() && !aKeyCode.IsMod2() ) && (( aKeyCode.GetGroup() == KEYGROUP_NUM) || |