summaryrefslogtreecommitdiffstats
path: root/svl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-12-13 08:04:26 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-12-13 10:11:44 +0000
commit90ca7d9e2423afccfaece5f7ffef7fcdd3b5b1e7 (patch)
tree4b2276cb495c416e7395bc6bc325da887eb815ad /svl
parentm_pInfoImage never constructed or used (diff)
downloadcore-90ca7d9e2423afccfaece5f7ffef7fcdd3b5b1e7.tar.gz
core-90ca7d9e2423afccfaece5f7ffef7fcdd3b5b1e7.zip
callcatcher: remove newly unused code
Diffstat (limited to 'svl')
-rw-r--r--svl/source/filepicker/pickerhistory.cxx18
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;
- }
}
//---------------------------------------------------------------------