summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/unmodpg.cxx
diff options
context:
space:
mode:
authorUrs Fässler <urs@bitzgi.ch>2013-03-19 22:24:19 +0100
committerUrs Fässler <urs@bitzgi.ch>2013-03-19 22:25:21 +0100
commit6e7ec40523fa4822ff5f66ad112ffcea6e823b3a (patch)
tree133efcc6613c415608c5b089f70e4a83a0cf5ce7 /sd/source/ui/view/unmodpg.cxx
parent0173e89ca254a18953615c07864d1da22e5149b5 (diff)
translation and cleanup of comments in sd/source/ui/view/
Change-Id: I988c0545600185c6b09131d27fb8480efddd947f
Diffstat (limited to 'sd/source/ui/view/unmodpg.cxx')
-rw-r--r--sd/source/ui/view/unmodpg.cxx29
1 files changed, 2 insertions, 27 deletions
diff --git a/sd/source/ui/view/unmodpg.cxx b/sd/source/ui/view/unmodpg.cxx
index 81a3f50e64c3..08a97b4dd490 100644
--- a/sd/source/ui/view/unmodpg.cxx
+++ b/sd/source/ui/view/unmodpg.cxx
@@ -39,11 +39,6 @@
TYPEINIT1(ModifyPageUndoAction, SdUndoAction);
-/*************************************************************************
-|*
-|* Konstruktor
-|*
-\************************************************************************/
ModifyPageUndoAction::ModifyPageUndoAction(
SdDrawDocument* pTheDoc,
@@ -79,16 +74,11 @@ ModifyPageUndoAction::ModifyPageUndoAction(
maComment = String(SdResId(STR_UNDO_MODIFY_PAGE));
}
-/*************************************************************************
-|*
-|* Undo()
-|*
-\************************************************************************/
#include <svx/svdviter.hxx>
#include <svx/svdview.hxx>
void ModifyPageUndoAction::Undo()
{
- // invalidate Selection, there could be objects deleted in tis UNDO
+ // invalidate Selection, there could be objects deleted in this UNDO
// which are no longer allowed to be selected then.
SdrViewIter aIter(mpPage);
SdrView* pView = aIter.FirstView();
@@ -129,15 +119,10 @@ void ModifyPageUndoAction::Undo()
SID_SWITCHPAGE, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD );
}
-/*************************************************************************
-|*
-|* Redo()
-|*
-\************************************************************************/
void ModifyPageUndoAction::Redo()
{
- // invalidate Selection, there could be objects deleted in tis UNDO
+ // invalidate Selection, there could be objects deleted in this UNDO
// which are no longer allowed to be selected then.
SdrViewIter aIter(mpPage);
SdrView* pView = aIter.FirstView();
@@ -178,21 +163,11 @@ void ModifyPageUndoAction::Redo()
SID_SWITCHPAGE, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD );
}
-/*************************************************************************
-|*
-|* Destruktor
-|*
-\************************************************************************/
ModifyPageUndoAction::~ModifyPageUndoAction()
{
}
-/*************************************************************************
-|*
-|* Kommentar liefern
-|*
-\************************************************************************/
rtl::OUString ModifyPageUndoAction::GetComment() const
{