Kaydet (Commit) 4eed1a25 authored tarafından Ivo Hinkelmann's avatar Ivo Hinkelmann

INTEGRATION: CWS mav32 (1.141.4); FILE MERGED

2008/04/18 15:12:22 mav 1.141.4.1: #i88435# use the correct suffix for the shared documents
üst 06345c78
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite * OpenOffice.org - a multi-platform office productivity suite
* *
* $RCSfile: sfxbasemodel.cxx,v $ * $RCSfile: sfxbasemodel.cxx,v $
* $Revision: 1.141 $ * $Revision: 1.142 $
* *
* This file is part of OpenOffice.org. * This file is part of OpenOffice.org.
* *
...@@ -124,6 +124,7 @@ ...@@ -124,6 +124,7 @@
#include "brokenpackageint.hxx" #include "brokenpackageint.hxx"
#include "graphhelp.hxx" #include "graphhelp.hxx"
#include <sfx2/msgpool.hxx> #include <sfx2/msgpool.hxx>
#include <sfxresid.hxx>
//________________________________________________________________________________________________________ //________________________________________________________________________________________________________
// const // const
...@@ -3567,7 +3568,11 @@ css::uno::Reference< css::frame::XUntitledNumbers > SfxBaseModel::impl_getUntitl ...@@ -3567,7 +3568,11 @@ css::uno::Reference< css::frame::XUntitledNumbers > SfxBaseModel::impl_getUntitl
if ( impl_isDisposed() ) if ( impl_isDisposed() )
return ::rtl::OUString(); return ::rtl::OUString();
return impl_getTitleHelper()->getTitle (); ::rtl::OUString aResult = impl_getTitleHelper()->getTitle ();
if ( m_pData->m_pObjectShell && m_pData->m_pObjectShell->IsDocShared() )
aResult += ::rtl::OUString( String( SfxResId(STR_SHARED) ) );
return aResult;
} }
//============================================================================= //=============================================================================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment