]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fix for non-PCH build in wxGenericRichMessageDialog code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 19 Aug 2010 00:06:12 +0000 (00:06 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 19 Aug 2010 00:06:12 +0000 (00:06 +0000)
Move IsCheckBoxChecked() to the .cpp file where wxCheckBox is fully defined
and not just forward declared (at least when not using PCH).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65356 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/richmsgdlgg.h
src/generic/richmsgdlgg.cpp

index fdff492ec37a7d9027b7ac4f2a413e06047f8f66..9d031df435433256b89afa2a98c908c193e7baa4 100644 (file)
@@ -28,12 +28,7 @@ public:
           m_detailsPane(NULL)
     { }
 
-    virtual bool IsCheckBoxChecked() const
-    {
-        // This function can be called before the dialog is shown and hence
-        // before the check box is created.
-        return m_checkBox? m_checkBoxValue : m_checkBox->IsChecked();
-    }
+    virtual bool IsCheckBoxChecked() const;
 
 protected:
     wxCheckBox *m_checkBox;
index 9f2efd9e51c24e2a69dbb6ce0b4abe18a652702a..06b226d4f6c0fd1a41599b4efce140ca8d707a8b 100644 (file)
@@ -18,6 +18,7 @@
 #if wxUSE_RICHMSGDLG
 
 #ifndef WX_PRECOMP
+    #include "wx/checkbox.h"
     #include "wx/stattext.h"
     #include "wx/sizer.h"
 #endif
@@ -84,4 +85,11 @@ void wxGenericRichMessageDialog::AddMessageDialogDetails(wxSizer *sizer)
     }
 }
 
+bool wxGenericRichMessageDialog::IsCheckBoxChecked() const
+{
+    // This function can be called before the dialog is shown and hence before
+    // the check box is created.
+    return m_checkBox? m_checkBoxValue : m_checkBox->IsChecked();
+}
+
 #endif // wxUSE_RICHMSGDLG