diff options
author | Dieter Loeschky <dl@openoffice.org> | 2001-04-12 09:09:34 +0000 |
---|---|---|
committer | Dieter Loeschky <dl@openoffice.org> | 2001-04-12 09:09:34 +0000 |
commit | ff0c9872c0371cabda127572708d5d67c90d30a9 (patch) | |
tree | f464d3e1f992f655b43517c8ddbc0bca6179bb3b /svx/source/svdraw/svdundo.cxx | |
parent | ec49984199b558da00dfaf1e36bcac2f5766a67d (diff) |
#85226# SdrUndoDelPage: SetModel() removed
Diffstat (limited to 'svx/source/svdraw/svdundo.cxx')
-rw-r--r-- | svx/source/svdraw/svdundo.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdundo.cxx b/svx/source/svdraw/svdundo.cxx index 828eb3df0d51..166778ee2b73 100644 --- a/svx/source/svdraw/svdundo.cxx +++ b/svx/source/svdraw/svdundo.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svdundo.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: dl $ $Date: 2001-03-29 11:43:29 $ + * last change: $Author: dl $ $Date: 2001-04-12 10:09:34 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1190,7 +1190,6 @@ SdrUndoDelPage::~SdrUndoDelPage() void SdrUndoDelPage::Undo() { - pPage->SetModel( &rMod ); ImpInsertPage(nPageNum); if (pUndoGroup!=NULL) { // MasterPage-Beziehungen wiederherstellen pUndoGroup->Undo(); @@ -1202,7 +1201,6 @@ void SdrUndoDelPage::Undo() void SdrUndoDelPage::Redo() { ImpRemovePage(nPageNum); - pPage->SetModel( NULL ); // Die MasterPage-Beziehungen werden ggf. von selbst geloesst DBG_ASSERT(!bItsMine,"RedoDeletePage: pPage gehoert bereits der UndoAction"); bItsMine=TRUE; |