diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-27 10:07:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 09:30:07 +0200 |
commit | b4824c891590ba78d084f155457d1246abfc638c (patch) | |
tree | 443dcde3bf95837bcf7228282b26b5cb5f1ed550 /sfx2 | |
parent | aca6fd651270227b44e3e67d6517b79bafb6229b (diff) |
convert includes/sfx2/frame.hxx from String to OUString
Change-Id: Ia69548250beb2896cab8c19fe2e635fdc9162f4d
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/view/frame.cxx | 10 |
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(); |