summaryrefslogtreecommitdiff
path: root/sfx2/source/doc/objmisc.cxx
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@pardus.org.tr>2016-08-04 14:10:23 +0300
committerjan iversen <jani@documentfoundation.org>2016-08-05 07:57:45 +0000
commit8433d136bcad3e5618ae63d0add0014ef2ff7fd9 (patch)
tree903b9f3e3433e5701ece337f1e6cd1a45eaaca5a /sfx2/source/doc/objmisc.cxx
parentcbf9b547b685ef0dd3cdf143987176b01c007d56 (diff)
tdf#85110 Add missing space to Untitled document name
When you create a new document, it is named as "Untitled 1", "Untitled 2" etc. but the properties dialog of the file is titled as "Untitled1", "Untitled2" etc. This patch adds the missing space inbetween. Change-Id: I63c6405f825d17b78fa05bf2b65d0b04d1ee0698 Reviewed-on: https://gerrit.libreoffice.org/27872 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'sfx2/source/doc/objmisc.cxx')
-rw-r--r--sfx2/source/doc/objmisc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/doc/objmisc.cxx b/sfx2/source/doc/objmisc.cxx
index 269722853588..57551b7524d5 100644
--- a/sfx2/source/doc/objmisc.cxx
+++ b/sfx2/source/doc/objmisc.cxx
@@ -827,10 +827,10 @@ OUString SfxObjectShell::GetTitle
if (pImpl->bIsNamedVisible)
{
// Append number
- aNoName += OUString::number(pImpl->nVisualDocumentNumber);
+ aNoName += " " + OUString::number(pImpl->nVisualDocumentNumber);
}
- // Document called "noname" for the time being
+ // Document called "Untitled" for the time being
return aNoName;
}