diff --git a/sd/source/ui/inc/MasterPageObserver.hxx b/sd/source/ui/inc/MasterPageObserver.hxx index f890c017f348..19112e33cf0d 100644 --- a/sd/source/ui/inc/MasterPageObserver.hxx +++ b/sd/source/ui/inc/MasterPageObserver.hxx @@ -39,7 +39,7 @@ class MasterPageObserver : public SdGlobalResource { public: - typedef ::std::set MasterPageNameSet; + typedef ::std::set MasterPageNameSet; /** Return the single instance of this class. */ diff --git a/sd/source/ui/inc/unoaprms.hxx b/sd/source/ui/inc/unoaprms.hxx index 250990125222..1bcceac9845c 100644 --- a/sd/source/ui/inc/unoaprms.hxx +++ b/sd/source/ui/inc/unoaprms.hxx @@ -104,7 +104,7 @@ public: { bOldDimHide = bTheOldDimHide; bNewDimHide = bTheNewDimHide; } void SetSoundOn(sal_Bool bTheOldSoundOn, sal_Bool bTheNewSoundOn) { bOldSoundOn = bTheOldSoundOn; bNewSoundOn = bTheNewSoundOn; } - void SetSound(String aTheOldSound, OUString aTheNewSound) + void SetSound(OUString aTheOldSound, OUString aTheNewSound) { aOldSoundFile = aTheOldSound; aNewSoundFile = aTheNewSound; } void SetBlueScreen(Color aTheOldBlueScreen, Color aTheNewBlueScreen) { aOldBlueScreen = aTheOldBlueScreen; aNewBlueScreen = aTheNewBlueScreen; } @@ -114,7 +114,7 @@ public: { pOldPathObj = pTheOldPath; pNewPathObj = pTheNewPath; } void SetClickAction(::com::sun::star::presentation::ClickAction eTheOldAction, ::com::sun::star::presentation::ClickAction eTheNewAction) { eOldClickAction = eTheOldAction; eNewClickAction = eTheNewAction; } - void SetBookmark(String aTheOldBookmark, OUString aTheNewBookmark) + void SetBookmark(OUString aTheOldBookmark, OUString aTheNewBookmark) { aOldBookmark = aTheOldBookmark; aNewBookmark = aTheNewBookmark; } void SetInvisibleInPres(sal_Bool bTheOldInvisibleInPres, sal_Bool bTheNewInvisibleInPres) { bOldInvisibleInPres = bTheOldInvisibleInPres; bNewInvisibleInPres = bTheNewInvisibleInPres; } diff --git a/sd/source/ui/sidebar/CurrentMasterPagesSelector.cxx b/sd/source/ui/sidebar/CurrentMasterPagesSelector.cxx index 2295bc90a998..9fc151d163ec 100644 --- a/sd/source/ui/sidebar/CurrentMasterPagesSelector.cxx +++ b/sd/source/ui/sidebar/CurrentMasterPagesSelector.cxx @@ -137,7 +137,7 @@ void CurrentMasterPagesSelector::Fill (ItemList& rItemList) SdPage* pMasterPage; // Remember the names of the master pages that have been inserted to // avoid double insertion. - ::std::set aMasterPageNames; + ::std::set aMasterPageNames; for (sal_uInt16 nIndex=0; nIndex aNames; + ::std::set aNames; sal_uInt16 nIndex; bool bLoop (true); for (nIndex=0; nIndex::reverse_iterator aNameIterator; + ::std::set::reverse_iterator aNameIterator; for (aNameIterator=aDocumentIterator->second.rbegin(); aNameIterator!=aDocumentIterator->second.rend(); ++aNameIterator) @@ -317,7 +317,7 @@ void MasterPageObserver::Implementation::AnalyzeUsedMasterPages ( { // Create a set of names of the master pages used by the given document. sal_uInt16 nMasterPageCount = rDocument.GetMasterSdPageCount(PK_STANDARD); - ::std::set aCurrentMasterPages; + ::std::set aCurrentMasterPages; for (sal_uInt16 nIndex=0; nIndex StringList; + typedef ::std::vector StringList; StringList aNewMasterPages; StringList aRemovedMasterPages; MasterPageContainer::iterator aOldMasterPagesDescriptor ( @@ -338,7 +338,7 @@ void MasterPageObserver::Implementation::AnalyzeUsedMasterPages ( { StringList::iterator I; - ::std::set::iterator J; + ::std::set::iterator J; int i=0; for (J=aOldMasterPagesDescriptor->second.begin(); J!=aOldMasterPagesDescriptor->second.end();