summaryrefslogtreecommitdiffstats
path: root/svx/source/dialog/checklbx.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-10-12 11:07:50 +0000
committerOliver Bolte <obo@openoffice.org>2006-10-12 11:07:50 +0000
commita9c858b7258cba5378f18da9e04c85d8d374daec (patch)
tree924850b18c95984c0205d657abb23426d5c0abf4 /svx/source/dialog/checklbx.cxx
parentINTEGRATION: CWS sb59 (1.11.62); FILE MERGED (diff)
downloadcore-a9c858b7258cba5378f18da9e04c85d8d374daec.tar.gz
core-a9c858b7258cba5378f18da9e04c85d8d374daec.zip
INTEGRATION: CWS sb59 (1.7.62); FILE MERGED
2006/08/03 13:51:27 cl 1.7.62.1: removed compiler warnings
Diffstat (limited to 'svx/source/dialog/checklbx.cxx')
-rw-r--r--svx/source/dialog/checklbx.cxx17
1 files changed, 15 insertions, 2 deletions
diff --git a/svx/source/dialog/checklbx.cxx b/svx/source/dialog/checklbx.cxx
index 2803d3eb08c7..ef72dcbde738 100644
--- a/svx/source/dialog/checklbx.cxx
+++ b/svx/source/dialog/checklbx.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: checklbx.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 04:11:54 $
+ * last change: $Author: obo $ $Date: 2006-10-12 12:07:24 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -257,3 +257,16 @@ void SvxCheckListBox::KeyInput( const KeyEvent& rKEvt )
SvTreeListBox::KeyInput( rKEvt );
}
+// -----------------------------------------------------------------------
+
+SvLBoxEntry* SvxCheckListBox::InsertEntry( const XubString& rText, SvLBoxEntry* pParent, BOOL bChildsOnDemand, ULONG nPos, void* pUserData )
+{
+ return SvTreeListBox::InsertEntry( rText, pParent, bChildsOnDemand, nPos, pUserData );
+}
+
+// -----------------------------------------------------------------------
+
+SvLBoxEntry* SvxCheckListBox::InsertEntry( const XubString& rText, const Image& rExpandedEntryBmp, const Image& rCollapsedEntryBmp, SvLBoxEntry* pParent, BOOL bChildsOnDemand, ULONG nPos, void* pUserData )
+{
+ return SvTreeListBox::InsertEntry( rText, rExpandedEntryBmp, rCollapsedEntryBmp, pParent, bChildsOnDemand, nPos, pUserData );
+}