Tag: cws_src680_oj14 User: oj Date: 2006/07/04 00:51:24 Modified: dba/dbaccess/source/ui/control/marktree.cxx
Log: RESYNC: (1.14-1.15); FILE MERGED File Changes: Directory: /dba/dbaccess/source/ui/control/ =========================================== File [changed]: marktree.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/control/marktree.cxx?r1=1.14.4.3&r2=1.14.4.4 Delta lines: +8 -8 ------------------- --- marktree.cxx 25 Apr 2006 12:51:37 -0000 1.14.4.3 +++ marktree.cxx 4 Jul 2006 07:51:21 -0000 1.14.4.4 @@ -107,14 +107,14 @@ // nur wenn space if (rKEvt.GetKeyCode().GetCode() == KEY_SPACE && !rKEvt.GetKeyCode().IsShift() && !rKEvt.GetKeyCode().IsMod1()) { - SvLBoxEntry* pHdlEntry = GetHdlEntry(); - if(pHdlEntry) + SvLBoxEntry* pCurrentHandlerEntry = GetHdlEntry(); + if(pCurrentHandlerEntry) { - SvButtonState eState = GetCheckButtonState( pHdlEntry); + SvButtonState eState = GetCheckButtonState( pCurrentHandlerEntry); if(eState == SV_BUTTON_CHECKED) - SetCheckButtonState( pHdlEntry,SV_BUTTON_UNCHECKED); + SetCheckButtonState( pCurrentHandlerEntry, SV_BUTTON_UNCHECKED); else - SetCheckButtonState( pHdlEntry,SV_BUTTON_CHECKED); + SetCheckButtonState( pCurrentHandlerEntry, SV_BUTTON_CHECKED); CheckButtonHdl(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
