summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2013-07-25 11:18:11 +0300
committerTor Lillqvist <tlillqvist@suse.com>2013-07-25 11:19:31 +0300
commit964da7bd8f8a9cc0615ad19784861b8dee61bb80 (patch)
tree341a40069c6cd86a6fc583b0f34c8040927af587 /sc
parent08ba5200e74f71c7bed62886489514f14d098b8c (diff)
WaE: C4510: default constructor could not be generated)
So declare (but don't define) a default constructor so that the compiler doesn't have to attempt to generate one. Thanks to Stephan and Lubos. Change-Id: Ic3dd5add26d774dcbaca65be9a409e766c5f9f9f
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/inc/reffact.hxx20
1 files changed, 16 insertions, 4 deletions
diff --git a/sc/source/ui/inc/reffact.hxx b/sc/source/ui/inc/reffact.hxx
index eb131e3cfcb3..08d191bcb925 100644
--- a/sc/source/ui/inc/reffact.hxx
+++ b/sc/source/ui/inc/reffact.hxx
@@ -55,19 +55,31 @@ DECL_WRAPPER_WITHID(ScHighlightChgDlgWrapper)
class ScDescriptiveStatisticsDialogWrapper :
public ChildWindowWrapper<SID_DESCRIPTIVE_STATISTICS_DIALOG>
-{};
+{
+private:
+ ScDescriptiveStatisticsDialogWrapper() SAL_DELETED_FUNCTION;
+};
class ScSamplingDialogWrapper :
public ChildWindowWrapper<SID_SAMPLING_DIALOG>
-{};
+{
+private:
+ ScSamplingDialogWrapper() SAL_DELETED_FUNCTION;
+};
class ScRandomNumberGeneratorDialogWrapper :
public ChildWindowWrapper<SID_RANDOM_NUMBER_GENERATOR_DIALOG>
-{};
+{
+private:
+ ScRandomNumberGeneratorDialogWrapper() SAL_DELETED_FUNCTION;
+};
class ScAnalysisOfVarianceDialogWrapper :
public ChildWindowWrapper<SID_ANALYSIS_OF_VARIANCE_DIALOG>
-{};
+{
+private:
+ ScAnalysisOfVarianceDialogWrapper() SAL_DELETED_FUNCTION;
+};
class ScAcceptChgDlgWrapper: public SfxChildWindow