summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-27 10:07:54 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:30:07 +0200
commitb4824c891590ba78d084f155457d1246abfc638c (patch)
tree443dcde3bf95837bcf7228282b26b5cb5f1ed550 /sfx2
parentaca6fd651270227b44e3e67d6517b79bafb6229b (diff)
convert includes/sfx2/frame.hxx from String to OUString
Change-Id: Ia69548250beb2896cab8c19fe2e635fdc9162f4d
Diffstat (limited to 'sfx2')
-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 8476a92e8c31..674bc0f8d0de 100644
--- a/sfx2/source/view/frame.cxx
+++ b/sfx2/source/view/frame.cxx
@@ -467,11 +467,11 @@ void SfxFrame::GetTargetList( TargetList& rList ) const
if ( !GetParentFrame() )
{
// An empty string for 'No Target'
- rList.push_back( new String() );
- rList.push_back( new String( "_top" ) );
- rList.push_back( new String( "_parent" ) );
- rList.push_back( new String( "_blank" ) );
- rList.push_back( new String( "_self" ) );
+ rList.push_back( String() );
+ rList.push_back( String( "_top" ) );
+ rList.push_back( String( "_parent" ) );
+ rList.push_back( String( "_blank" ) );
+ rList.push_back( String( "_self" ) );
}
SfxViewFrame* pView = GetCurrentViewFrame();