summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-01-06 16:58:39 +0200
committerTor Lillqvist <tml@iki.fi>2013-01-06 17:00:34 +0200
commit9bdaff431bdd71717c64f002f3df0f110c146a08 (patch)
tree5852114f3c7f769782d9214986af743844fcccd0
parent1a23b4687aa4fdf0bf1df246cacaba6a3a028f39 (diff)
Typo
-rw-r--r--desktop/source/app/app.cxx2
-rw-r--r--framework/source/fwe/helper/titlehelper.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 19f088c170fa..02f6001d4daa 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -1459,7 +1459,7 @@ int Desktop::Main()
//include buildid in non product builds
::rtl::OUString aDefault("development");
aTitle += rtl::OUString(" [");
- String aVerId( utl::Bootstrap::getProductBuildIdData(aDefault));
+ String aVerId( utl::Bootstrap::getBuildIdData(aDefault));
aTitle += aVerId;
aTitle += ']';
#endif
diff --git a/framework/source/fwe/helper/titlehelper.cxx b/framework/source/fwe/helper/titlehelper.cxx
index baa8b8c71e2b..ff647422ae65 100644
--- a/framework/source/fwe/helper/titlehelper.cxx
+++ b/framework/source/fwe/helper/titlehelper.cxx
@@ -579,7 +579,7 @@ void TitleHelper::impl_appendModuleName (::rtl::OUStringBuffer& sTitle)
void TitleHelper::impl_appendDebugVersion (::rtl::OUStringBuffer& sTitle)
{
::rtl::OUString sDefault(RTL_CONSTASCII_USTRINGPARAM("development"));
- ::rtl::OUString sVersion = ::utl::Bootstrap::getProductBuildIdData(sDefault);
+ ::rtl::OUString sVersion = ::utl::Bootstrap::getBuildIdData(sDefault);
sTitle.appendAscii(RTL_CONSTASCII_STRINGPARAM(" ["));
sTitle.append(sVersion);
sTitle.appendAscii(RTL_CONSTASCII_STRINGPARAM("]"));