INTEGRATION: CWS impress46 (1.6.20); FILE MERGED

2005/04/08 14:42:25 af 1.6.20.1: #i46907# Divided DeleteSelectedSlides() into methods specific to normal slides and master pages.
This commit is contained in:
Oliver Bolte 2005-04-18 10:16:16 +00:00
parent 506f301148
commit 20a9730843

View file

@ -2,9 +2,9 @@
*
* $RCSfile: SlideSorterController.hxx,v $
*
* $Revision: 1.8 $
* $Revision: 1.9 $
*
* last change: $Author: obo $ $Date: 2005-04-12 16:58:03 $
* last change: $Author: obo $ $Date: 2005-04-18 11:16:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -401,6 +401,20 @@ private:
is moved into the visible area.
*/
bool mbIsMakeSelectionVisiblePending;
/** Delete the given list of normal pages. This method is a helper
function for DeleteSelectedPages().
@param rSelectedNormalPages
A list of normal pages. Supplying master pages is an error.
*/
void DeleteSelectedNormalPages (const ::std::vector<SdPage*>& rSelectedNormalPages);
/** Delete the given list of master pages. This method is a helper
function for DeleteSelectedPages().
@param rSelectedMasterPages
A list of master pages. Supplying normal pages is an error.
*/
void DeleteSelectedMasterPages (const ::std::vector<SdPage*>& rSelectedMasterPages);
};
} } } // end of namespace ::sd::slidesorter::controller