diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-19 14:16:55 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-19 14:18:10 +0100 |
commit | 5bb4a2ba1d8a6b98720868786e552aa8fd2a22eb (patch) | |
tree | f891d796fa21c5bfb941eaa4a3f0c05a7e179cc6 /basctl | |
parent | 2633b249ea6921645c57ab24a1c9ad0c8e61e144 (diff) |
further OUString cleanup
Change-Id: I19954ee5976cb881a5fe73a889c8e04a19b14eb6
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 6 | ||||
-rw-r--r-- | basctl/source/basicide/moduldl2.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 8ab5dd94cd45..bb81726502f5 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -1366,7 +1366,7 @@ void WatchWindow::AddWatch( const String& rVName ) WatchItem* pWatchItem = new WatchItem(aVar); OUString aWatchStr_( aVar ); - aWatchStr_ += OUString( "\t\t" ); + aWatchStr_ += "\t\t"; SvTreeListEntry* pNewEntry = aTreeListBox.InsertEntry( aWatchStr_, 0, true, LIST_APPEND ); pNewEntry->SetUserData( pWatchItem ); @@ -2121,7 +2121,7 @@ void WatchTreeListBox::UpdateWatches( bool bBasicStopped ) } else { - aWatchStr += OUString( "<?>" ); + aWatchStr += "<?>"; } } else if ( (sal_uInt8)eType == (sal_uInt8)SbxOBJECT ) @@ -2199,7 +2199,7 @@ void WatchTreeListBox::UpdateWatches( bool bBasicStopped ) } else if( !bArrayElement ) { - aWatchStr += OUString( "<Out of Scope>" ); + aWatchStr += "<Out of Scope>"; } if( bCollapse ) diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx index 92e54d050ed2..68b41ba53eb0 100644 --- a/basctl/source/basicide/moduldl2.cxx +++ b/basctl/source/basicide/moduldl2.cxx @@ -940,7 +940,7 @@ void LibPage::InsertLib() { OUString aErrStr( IDE_RESSTR(RID_STR_REPLACELIB) ); aErrStr = aErrStr.replaceAll("XX", aLibName); - aErrStr += OUString( "\n" ); + aErrStr += "\n"; aErrStr += IDE_RESSTR(RID_STR_LIBISREADONLY); ErrorBox( this, WB_OK | WB_DEF_OK, aErrStr ).Execute(); continue; |