tdf#114677 Correct title in Base forms cleanup
Change-Id: I224858ffce50b00273d80f915831ec7789cfa64a Reviewed-on: https://gerrit.libreoffice.org/48819 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
This commit is contained in:
@@ -969,17 +969,14 @@ bool DocumentHolder::LoadDocToFrame( bool bInPlace )
|
|||||||
|
|
||||||
// set document title to show in the title bar
|
// set document title to show in the title bar
|
||||||
css::uno::Reference< css::frame::XTitle > xModelTitle( xDoc, css::uno::UNO_QUERY );
|
css::uno::Reference< css::frame::XTitle > xModelTitle( xDoc, css::uno::UNO_QUERY );
|
||||||
if( xModelTitle.is() )
|
if( xModelTitle.is() && m_pEmbedObj && !m_pEmbedObj->getContainerName().isEmpty() )
|
||||||
{
|
{
|
||||||
std::locale aResLoc = Translate::Create("sfx");
|
std::locale aResLoc = Translate::Create("sfx");
|
||||||
OUString sEmbedded = Translate::get(STR_EMBEDDED_TITLE, aResLoc);
|
OUString sEmbedded = Translate::get(STR_EMBEDDED_TITLE, aResLoc);
|
||||||
if( !m_pEmbedObj->getContainerName().isEmpty() )
|
xModelTitle->setTitle( m_pEmbedObj->getContainerName() + sEmbedded );
|
||||||
{
|
m_aContainerName = m_pEmbedObj->getContainerName();
|
||||||
xModelTitle->setTitle( m_pEmbedObj->getContainerName() + sEmbedded );
|
// TODO: get real m_aDocumentNamePart
|
||||||
m_aContainerName = m_pEmbedObj->getContainerName();
|
m_aDocumentNamePart = sEmbedded;
|
||||||
// TODO: get real m_aDocumentNamePart
|
|
||||||
m_aDocumentNamePart = sEmbedded;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( bInPlace )
|
if ( bInPlace )
|
||||||
|
Reference in New Issue
Block a user