summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2011-11-04 11:35:45 +0100
committerStephan Bergmann <sbergman@redhat.com>2011-11-04 11:36:06 +0100
commitb05266ab750e939c46d9962216208e9d9beadd16 (patch)
treed07537a104d9fdaea77214ce09f573a749735330 /vcl/inc
parent7242bf3eece5a81d031013389b24085ce685f921 (diff)
Some WNT-only code still needs ApplicationEvent(); plus made the other ctor explicit.
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/vcl/svapp.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/inc/vcl/svapp.hxx b/vcl/inc/vcl/svapp.hxx
index ccd232ca5997..5fea0317b746 100644
--- a/vcl/inc/vcl/svapp.hxx
+++ b/vcl/inc/vcl/svapp.hxx
@@ -106,8 +106,10 @@ public:
TYPE_UNACCEPT
};
- ApplicationEvent(Type rEvent,
- const rtl::OUString& rData = rtl::OUString()):
+ ApplicationEvent() {}
+
+ explicit ApplicationEvent(
+ Type rEvent, const rtl::OUString& rData = rtl::OUString()):
aEvent(rEvent),
aData(rData)
{}