summaryrefslogtreecommitdiff
path: root/svx/source/dialog/checklbx.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/checklbx.cxx')
-rw-r--r--svx/source/dialog/checklbx.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/svx/source/dialog/checklbx.cxx b/svx/source/dialog/checklbx.cxx
index 0faa72feb39e..ae321b006820 100644
--- a/svx/source/dialog/checklbx.cxx
+++ b/svx/source/dialog/checklbx.cxx
@@ -71,7 +71,6 @@ void SvxCheckListBox::InsertEntry( const OUString& rStr, sal_uLong nPos,
}
-
void SvxCheckListBox::RemoveEntry( sal_uLong nPos )
{
if ( nPos < GetEntryCount() )
@@ -79,7 +78,6 @@ void SvxCheckListBox::RemoveEntry( sal_uLong nPos )
}
-
void SvxCheckListBox::SelectEntryPos( sal_uLong nPos, bool bSelect )
{
if ( nPos < GetEntryCount() )
@@ -87,7 +85,6 @@ void SvxCheckListBox::SelectEntryPos( sal_uLong nPos, bool bSelect )
}
-
sal_uLong SvxCheckListBox::GetSelectEntryPos() const
{
SvTreeListEntry* pEntry = GetCurEntry();
@@ -98,7 +95,6 @@ sal_uLong SvxCheckListBox::GetSelectEntryPos() const
}
-
OUString SvxCheckListBox::GetText( sal_uLong nPos ) const
{
SvTreeListEntry* pEntry = GetEntry( nPos );
@@ -109,7 +105,6 @@ OUString SvxCheckListBox::GetText( sal_uLong nPos ) const
}
-
sal_uLong SvxCheckListBox::GetCheckedEntryCount() const
{
sal_uLong nCheckCount = 0;
@@ -124,7 +119,6 @@ sal_uLong SvxCheckListBox::GetCheckedEntryCount() const
}
-
void SvxCheckListBox::CheckEntryPos( sal_uLong nPos, bool bCheck )
{
if ( nPos < GetEntryCount() )
@@ -134,7 +128,6 @@ void SvxCheckListBox::CheckEntryPos( sal_uLong nPos, bool bCheck )
}
-
bool SvxCheckListBox::IsChecked( sal_uLong nPos ) const
{
if ( nPos < GetEntryCount() )
@@ -144,7 +137,6 @@ bool SvxCheckListBox::IsChecked( sal_uLong nPos ) const
}
-
void* SvxCheckListBox::SetEntryData ( sal_uLong nPos, void* pNewData )
{
void* pOld = nullptr;
@@ -158,7 +150,6 @@ void* SvxCheckListBox::SetEntryData ( sal_uLong nPos, void* pNewData )
}
-
void* SvxCheckListBox::GetEntryData( sal_uLong nPos ) const
{
if ( nPos < GetEntryCount() )
@@ -168,7 +159,6 @@ void* SvxCheckListBox::GetEntryData( sal_uLong nPos ) const
}
-
void SvxCheckListBox::ToggleCheckButton( SvTreeListEntry* pEntry )
{
if ( pEntry )
@@ -181,7 +171,6 @@ void SvxCheckListBox::ToggleCheckButton( SvTreeListEntry* pEntry )
}
-
void SvxCheckListBox::MouseButtonDown( const MouseEvent& rMEvt )
{
if ( rMEvt.IsLeft() )
@@ -221,7 +210,6 @@ void SvxCheckListBox::MouseButtonDown( const MouseEvent& rMEvt )
}
-
void SvxCheckListBox::KeyInput( const KeyEvent& rKEvt )
{
const vcl::KeyCode& rKey = rKEvt.GetKeyCode();
@@ -243,7 +231,6 @@ void SvxCheckListBox::KeyInput( const KeyEvent& rKEvt )
}
-
SvTreeListEntry* SvxCheckListBox::InsertEntry( const OUString& rText, SvTreeListEntry* pParent, bool bChildrenOnDemand, sal_uIntPtr nPos, void* pUserData, SvLBoxButtonKind eButtonKind )
{
return SvTreeListBox::InsertEntry( rText, pParent, bChildrenOnDemand, nPos, pUserData, eButtonKind );