[Libreoffice-commits] .: sd/source

Muthu Subramanian sumuthu at kemper.freedesktop.org
Wed Feb 1 04:22:02 PST 2012


 sd/source/ui/unoidl/unopage.cxx |   15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

New commits:
commit fd33c0b1cf23020b27db25895eeb380653d734b6
Author: Muthu Subramanian <sumuthu at suse.com>
Date:   Wed Feb 1 18:01:17 2012 +0530

    n#735533: Donot set duplicate master slide names.

diff --git a/sd/source/ui/unoidl/unopage.cxx b/sd/source/ui/unoidl/unopage.cxx
index 4867338..a13a4fa 100644
--- a/sd/source/ui/unoidl/unopage.cxx
+++ b/sd/source/ui/unoidl/unopage.cxx
@@ -3015,7 +3015,7 @@ void SdMasterPage::getBackground( Any& rValue ) throw()
 }
 
 // XNamed
-void SAL_CALL SdMasterPage::setName( const OUString& aName )
+void SAL_CALL SdMasterPage::setName( const OUString& rName )
     throw(uno::RuntimeException)
 {
     ::SolarMutexGuard aGuard;
@@ -3024,11 +3024,18 @@ void SAL_CALL SdMasterPage::setName( const OUString& aName )
 
     if(SvxFmDrawPage::mpPage && GetPage()->GetPageKind() != PK_NOTES)
     {
-        String aNewName( aName );
+        SdDrawDocument* pDoc = GetModel()->GetDoc();
+        sal_Bool bOutDummy;
+        String aNewName( rName );
+
+        // Slide Name has to be unique
+        if( pDoc && pDoc->GetPageByName( aNewName, bOutDummy ) != SDRPAGE_NOTFOUND )
+            return; // throw Exception ?
+
         GetPage()->SetName( aNewName );
 
-        if(GetModel()->GetDoc())
-            GetModel()->GetDoc()->RenameLayoutTemplate(GetPage()->GetLayoutName(), aNewName);
+        if( pDoc )
+            pDoc->RenameLayoutTemplate( GetPage()->GetLayoutName(), aNewName );
 
         // fake a mode change to repaint the page tab bar
         ::sd::DrawDocShell* pDocSh = GetModel()->GetDocShell();


More information about the Libreoffice-commits mailing list