summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-05-22 16:05:23 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-05-22 22:43:13 +0200
commitff966ca6f43e2013095f6379525f1d969e65aef4 (patch)
tree31132eef9feba36c1938d2fd04e9e1795bf6aabc /include
parent1d296f2b48827df13172e3b8c3fdf708807392e8 (diff)
replace DialogCancelledException with std::abort
Change-Id: Ib815c1a84efa4682ad644132ad3704f249b04a68
Diffstat (limited to 'include')
-rw-r--r--include/vcl/svapp.hxx12
1 files changed, 1 insertions, 11 deletions
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx
index ffe228e453d5..c182a0bdc93f 100644
--- a/include/vcl/svapp.hxx
+++ b/include/vcl/svapp.hxx
@@ -124,17 +124,7 @@ public:
DIALOG_CANCEL_OFF, ///< do not automatically cancel dialogs
DIALOG_CANCEL_SILENT, ///< silently cancel any dialogs
DIALOG_CANCEL_FATAL
- ///< cancel any dialogs by throwing a DialogCancelledException
- };
-
- class VCL_DLLPUBLIC DialogCancelledException:
- virtual public std::runtime_error
- {
- public:
- explicit DialogCancelledException(char const * what_arg):
- runtime_error(what_arg) {}
-
- virtual ~DialogCancelledException() throw ();
+ ///< cancel any dialogs by std::abort
};
Application();