sc/source/ui/inc/reffact.hxx |   20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

New commits:
commit 964da7bd8f8a9cc0615ad19784861b8dee61bb80
Author: Tor Lillqvist <tlillqv...@suse.com>
Date:   Thu Jul 25 11:18:11 2013 +0300

    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

diff --git a/sc/source/ui/inc/reffact.hxx b/sc/source/ui/inc/reffact.hxx
index eb131e3..08d191b 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
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to