summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/drviews2.cxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <quikee@gmail.com>2012-07-01 19:17:39 +0200
committerTomaž Vajngerl <quikee@gmail.com>2012-07-01 19:31:10 +0200
commit160f62dff2f040ceaf306819d0c67fb111037b2d (patch)
tree35b616d14dc1afa597f6d8e8d87ab8cfcc5ef504 /sd/source/ui/view/drviews2.cxx
parentb9c376111b7ed3137d7ff72286888e7373487142 (diff)
Svx and sw code cleanup
Change-Id: Ie93861f32ac23379dc1f0fd973612645e776cc1e
Diffstat (limited to 'sd/source/ui/view/drviews2.cxx')
-rw-r--r--sd/source/ui/view/drviews2.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx
index a33b12bec00a..c4630c2831f2 100644
--- a/sd/source/ui/view/drviews2.cxx
+++ b/sd/source/ui/view/drviews2.cxx
@@ -714,23 +714,22 @@ void DrawViewShell::FuTemporary(SfxRequest& rReq)
{
WaitObject aWait( (Window*)GetActiveWindow() );
- // switch on undo for the next operations
- mpDrawView->BegUndo(
- String(
- SdResId (nSId==SID_CONVERT_TO_METAFILE ? STR_UNDO_CONVERT_TO_METAFILE : STR_UNDO_CONVERT_TO_BITMAP)));
-
// create SdrGrafObj from metafile/bitmap
Graphic aGraphic;
switch (nSId)
{
case SID_CONVERT_TO_METAFILE:
{
+ // switch on undo for the next operations
+ mpDrawView->BegUndo( String( SdResId( STR_UNDO_CONVERT_TO_METAFILE )));
GDIMetaFile aMetaFile(mpDrawView->GetAllMarkedMetaFile ());
aGraphic = Graphic(aMetaFile);
}
break;
case SID_CONVERT_TO_BITMAP:
{
+ // switch on undo for the next operations
+ mpDrawView->BegUndo( String( SdResId( STR_UNDO_CONVERT_TO_BITMAP )));
Bitmap aBitmap (mpDrawView->GetAllMarkedBitmap ());
aGraphic = Graphic(aBitmap);
}