diff options
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/dialog/dinfdlg.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx index 0cb152f50b3a..75e03a572fb0 100644 --- a/sfx2/source/dialog/dinfdlg.cxx +++ b/sfx2/source/dialog/dinfdlg.cxx @@ -1208,18 +1208,18 @@ SfxDocumentInfoDialog::SfxDocumentInfoDialog( vcl::Window* pParent, { OUString aLastName( aURL.GetLastName() ); if ( !aLastName.isEmpty() ) - aTitle += aLastName; + aTitle = aTitle.replaceFirst("%1", aLastName); else - aTitle += aFile; + aTitle = aTitle.replaceFirst("%1", aFile); } else - aTitle += SfxResId( STR_NONAME ).toString(); + aTitle = aTitle.replaceFirst("%1", SfxResId( STR_NONAME ).toString()); } else { DBG_ASSERT( dynamic_cast<const SfxStringItem *>(pItem) != nullptr, "SfxDocumentInfoDialog:<SfxStringItem> expected" ); - aTitle += static_cast<const SfxStringItem*>(pItem)->GetValue(); + aTitle = aTitle.replaceFirst("%1", static_cast<const SfxStringItem*>(pItem)->GetValue()); } SetText( aTitle ); |