diff options
-rw-r--r-- | desktop/source/app/app.cxx | 2 | ||||
-rw-r--r-- | framework/source/fwe/helper/titlehelper.cxx | 2 |
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("]")); |