summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/control/marktree.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 02:00:22 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 02:00:22 +0000
commit45a85ef7d2c6894888cad764d922fb4e96fade8d (patch)
tree02c276106c7d56999778bad97902fb2407a860e6 /dbaccess/source/ui/control/marktree.cxx
parent393befd4f4a271be100ad8f0b4a6a725e85d3218 (diff)
INTEGRATION: CWS warnings01 (1.14.74); FILE MERGED
2006/03/24 15:36:07 fs 1.14.74.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro)
Diffstat (limited to 'dbaccess/source/ui/control/marktree.cxx')
-rw-r--r--dbaccess/source/ui/control/marktree.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/dbaccess/source/ui/control/marktree.cxx b/dbaccess/source/ui/control/marktree.cxx
index cffd60b0c101..015d7a419a20 100644
--- a/dbaccess/source/ui/control/marktree.cxx
+++ b/dbaccess/source/ui/control/marktree.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: marktree.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: hr $ $Date: 2005-09-23 12:24:09 $
+ * last change: $Author: hr $ $Date: 2006-06-20 03:00:22 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -110,14 +110,14 @@ void OMarkableTreeListBox::KeyInput( const KeyEvent& rKEvt )
// 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();
}