summaryrefslogtreecommitdiff
path: root/sfx2/source/view/frame.cxx
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-01-01 10:53:48 -0800
committerJoseph Powers <jpowers27@cox.net>2011-01-01 10:53:48 -0800
commit20c9277f3ad930d31c720e7a1ac0e623eaa55beb (patch)
tree66a9c832978bc658e14ee3065d5168cd1e933471 /sfx2/source/view/frame.cxx
parenta407bbfe8c35a4791b688e375430e1eb2b54e17c (diff)
Remove DECLARE_LIST( TargetList, String* )
Diffstat (limited to 'sfx2/source/view/frame.cxx')
-rw-r--r--sfx2/source/view/frame.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/source/view/frame.cxx b/sfx2/source/view/frame.cxx
index e4b125846d34..41452da24cad 100644
--- a/sfx2/source/view/frame.cxx
+++ b/sfx2/source/view/frame.cxx
@@ -493,11 +493,11 @@ void SfxFrame::GetTargetList( TargetList& rList ) const
if ( !GetParentFrame() )
{
// Einen Leerstring f"ur 'Kein Target'
- rList.Insert( new String() );
- rList.Insert( new String( DEFINE_CONST_UNICODE( "_top" ) ) );
- rList.Insert( new String( DEFINE_CONST_UNICODE( "_parent" ) ) );
- rList.Insert( new String( DEFINE_CONST_UNICODE( "_blank" ) ) );
- rList.Insert( new String( DEFINE_CONST_UNICODE( "_self" ) ) );
+ rList.push_back( new String() );
+ rList.push_back( new String( DEFINE_CONST_UNICODE( "_top" ) ) );
+ rList.push_back( new String( DEFINE_CONST_UNICODE( "_parent" ) ) );
+ rList.push_back( new String( DEFINE_CONST_UNICODE( "_blank" ) ) );
+ rList.push_back( new String( DEFINE_CONST_UNICODE( "_self" ) ) );
}
SfxViewFrame* pView = GetCurrentViewFrame();