summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/controller/SlsClipboard.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-01-31 13:53:04 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-01-31 13:53:04 +0000
commit304785f06a4901a7dafc9f985efe66efeaa21567 (patch)
tree5b248a9345b8400cfb987c0550b9eef8edb260f2 /sd/source/ui/slidesorter/controller/SlsClipboard.cxx
parent61fe87b0074f58cf1e194d42a6d5cee0ca994e1d (diff)
INTEGRATION: CWS iha06 (1.6.40); FILE MERGED
2005/01/11 14:19:43 iha 1.6.40.1: #i39635# remove delete page warning
Diffstat (limited to 'sd/source/ui/slidesorter/controller/SlsClipboard.cxx')
-rw-r--r--sd/source/ui/slidesorter/controller/SlsClipboard.cxx15
1 files changed, 4 insertions, 11 deletions
diff --git a/sd/source/ui/slidesorter/controller/SlsClipboard.cxx b/sd/source/ui/slidesorter/controller/SlsClipboard.cxx
index 8835f3d3f8b1..6f19d218483b 100644
--- a/sd/source/ui/slidesorter/controller/SlsClipboard.cxx
+++ b/sd/source/ui/slidesorter/controller/SlsClipboard.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: SlsClipboard.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: obo $ $Date: 2005-01-25 15:17:27 $
+ * last change: $Author: rt $ $Date: 2005-01-31 14:53:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -170,15 +170,8 @@ void Clipboard::DoCut (::Window* pWindow)
{
if (mrController.GetModel().GetPageCount() > 1)
{
- QueryBox aDialog (
- pWindow,
- WB_YES_NO,
- SdResId(STR_WARN_DEL_SEL_PAGES));
- if (aDialog.Execute() == RET_YES)
- {
- DoCopy (pWindow);
- mrController.DeleteSelectedPages();
- }
+ DoCopy (pWindow);
+ mrController.DeleteSelectedPages();
}
}