diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-08-16 08:30:46 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-16 13:59:30 +0100 |
commit | ecbb33dd8044ad45cf05f868f829e635e03d7589 (patch) | |
tree | 275861a3c171d56eddea591526abb02ecea35eb1 /vcl | |
parent | 29c43f6900b74180dcaeb586909da2652eef0f85 (diff) |
callcatcher: newly unused ResId related methods
Change-Id: I8dd43929a085a1d4cde2a9f057adc2feca5d16c1
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/lstbox.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/vcl/source/control/lstbox.cxx b/vcl/source/control/lstbox.cxx index 25d99146592f..1a95d2a5726c 100644 --- a/vcl/source/control/lstbox.cxx +++ b/vcl/source/control/lstbox.cxx @@ -1021,15 +1021,6 @@ sal_uInt16 ListBox::InsertEntry( const OUString& rStr, sal_uInt16 nPos ) } -sal_uInt16 ListBox::InsertEntry( const Image& rImage, sal_uInt16 nPos ) -{ - sal_uInt16 nRealPos = mpImplLB->InsertEntry( nPos + mpImplLB->GetEntryList()->GetMRUCount(), rImage ); - nRealPos = sal::static_int_cast<sal_uInt16>(nRealPos - mpImplLB->GetEntryList()->GetMRUCount()); - CallEventListeners( VCLEVENT_LISTBOX_ITEMADDED, (void*) sal_IntPtr(nRealPos) ); - return nRealPos; -} - - sal_uInt16 ListBox::InsertEntry( const OUString& rStr, const Image& rImage, sal_uInt16 nPos ) { sal_uInt16 nRealPos = mpImplLB->InsertEntry( nPos + mpImplLB->GetEntryList()->GetMRUCount(), rStr, rImage ); |