Make titlebar string shorter in dbgutil mode.

This commit is contained in:
Caolán McNamara 2011-06-28 13:05:59 +01:00
parent 7ca3e59c20
commit c33025e856

View file

@ -245,9 +245,9 @@ String SfxViewFrame::UpdateTitle()
::rtl::OUString aDocServiceName( GetObjectShell()->GetFactory().GetDocumentServiceName() );
aTitle += String( GetModuleName_Impl( aDocServiceName ) );
#ifdef DBG_UTIL
::rtl::OUString aDefault;
::rtl::OUString aDefault(RTL_CONSTASCII_USTRINGPARAM("development"));
aTitle += DEFINE_CONST_UNICODE(" [");
String aVerId( utl::Bootstrap::getBuildIdData( aDefault ));
String aVerId( utl::Bootstrap::getProductSource( aDefault ));
aTitle += aVerId;
aTitle += ']';
#endif