diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-13 20:12:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-13 20:14:01 +0100 |
commit | a51488cb2400163e20bc4fe5e3028587c29d08d9 (patch) | |
tree | 15bbf160f8aade528337d52e3e25ec60271fa615 /svtools | |
parent | f1b6058a3b321a150c0373ddc6066ecc8eb85312 (diff) |
callcatcher: update unused code and drop freshly unused methods
Change-Id: I8b1c0cc4a1af259e39578c36bace126c35337ecd
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/inc/svtools/treelistbox.hxx | 2 | ||||
-rw-r--r-- | svtools/source/contnr/treelistbox.cxx | 17 |
2 files changed, 0 insertions, 19 deletions
diff --git a/svtools/inc/svtools/treelistbox.hxx b/svtools/inc/svtools/treelistbox.hxx index 6e2f278baec5..a919cd5dded3 100644 --- a/svtools/inc/svtools/treelistbox.hxx +++ b/svtools/inc/svtools/treelistbox.hxx @@ -639,8 +639,6 @@ protected: void EditItemText( SvLBoxEntry* pEntry, SvLBoxString* pItem, const Selection& ); void EditedText( const XubString& ); - void EditingRequest( SvLBoxEntry* pEntry, SvLBoxItem* pItem, - const Point& rMousePos ); // berechnet abhaengig von TreeList-Style & Bitmap-Groessen // alle Tabulatoren neu; wird beim Einfuegen/Austauschen von diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx index 3c7da292169d..724f6517617e 100644 --- a/svtools/source/contnr/treelistbox.cxx +++ b/svtools/source/contnr/treelistbox.cxx @@ -2950,23 +2950,6 @@ void SvTreeListBox::EditedText( const XubString& rStr ) } } -void SvTreeListBox::EditingRequest( SvLBoxEntry* pEntry, SvLBoxItem* pItem, - const Point& ) -{ - DBG_CHKTHIS(SvTreeListBox,0); - if( IsEditingActive() ) - EndEditing(); - if( pItem->IsA() == SV_ITEM_ID_LBOXSTRING ) - { - Selection aSel( SELECTION_MIN, SELECTION_MAX ); - if( EditingEntry( pEntry, aSel ) ) - { - SelectAll( sal_False ); - EditItemText( pEntry, (SvLBoxString*)pItem, aSel ); - } - } -} - SvLBoxEntry* SvTreeListBox::GetDropTarget( const Point& rPos ) { DBG_CHKTHIS(SvTreeListBox,0); |