summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/control/marktree.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-02-25 02:17:44 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-02-25 03:14:00 +0100
commit405caad685edd0ba914789bda01b5dc9b3030773 (patch)
treee5a16d9474717f67cfd029e1ed7b9ecdb0e738ab /dbaccess/source/ui/control/marktree.cxx
parent800376357fd1fc0594ba3dc5e0579fd163a3039a (diff)
loplugin: unused variables
Change-Id: I46a748bf2c54d15c0f5718901197f3b4c34b82bf
Diffstat (limited to 'dbaccess/source/ui/control/marktree.cxx')
-rw-r--r--dbaccess/source/ui/control/marktree.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/dbaccess/source/ui/control/marktree.cxx b/dbaccess/source/ui/control/marktree.cxx
index dcf7e5f559ac..a99ef1c9a3fa 100644
--- a/dbaccess/source/ui/control/marktree.cxx
+++ b/dbaccess/source/ui/control/marktree.cxx
@@ -106,9 +106,6 @@ SvButtonState OMarkableTreeListBox::implDetermineState(SvTreeListEntry* _pEntry)
if (!GetModel()->HasChildren(_pEntry))
// nothing to do in this bottom-up routine if there are no children ...
return eState;
-#ifdef DBG_UTIL
- String sEntryText =GetEntryText(_pEntry);
-#endif
// loop through the children and check their states
sal_uInt16 nCheckedChildren = 0;
@@ -117,9 +114,6 @@ SvButtonState OMarkableTreeListBox::implDetermineState(SvTreeListEntry* _pEntry)
SvTreeListEntry* pChildLoop = GetModel()->FirstChild(_pEntry);
while (pChildLoop)
{
-#ifdef DBG_UTIL
- String sChildText =GetEntryText(pChildLoop);
-#endif
SvButtonState eChildState = implDetermineState(pChildLoop);
if (SV_BUTTON_TRISTATE == eChildState)
break;