diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-12-13 08:04:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-12-13 10:11:44 +0000 |
commit | 90ca7d9e2423afccfaece5f7ffef7fcdd3b5b1e7 (patch) | |
tree | 4b2276cb495c416e7395bc6bc325da887eb815ad /svl | |
parent | a796b8ae135861101df9e0af1c0ff40151d8b5c2 (diff) |
callcatcher: remove newly unused code
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/filepicker/pickerhistory.cxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/svl/source/filepicker/pickerhistory.cxx b/svl/source/filepicker/pickerhistory.cxx index f4b8b1bddc95..5570788d53e2 100644 --- a/svl/source/filepicker/pickerhistory.cxx +++ b/svl/source/filepicker/pickerhistory.cxx @@ -86,24 +86,6 @@ namespace svt // then push_back the picker _rHistory.push_back( InterfaceAdapter( _rxPicker ) ); } - - //----------------------------------------------------------------- - Reference< XInterface > implGetTopMostPicker( const InterfaceArray& _rHistory ) - { - Reference< XInterface > xTopMostAlive; - - //============================================================= - // search the first picker which is still alive ... - for ( InterfaceArray::const_reverse_iterator aLoop = _rHistory.rbegin(); - ( aLoop != _rHistory.rend() ) && !xTopMostAlive.is(); - ++aLoop - ) - { - xTopMostAlive = aLoop->get(); - } - - return xTopMostAlive; - } } //--------------------------------------------------------------------- |