]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dlgcmn.cpp
Use system colours
[wxWidgets.git] / src / common / dlgcmn.cpp
index d41cd25f739fd2c20086fec584a1abd07709019e..ba4e88cbbe8dc8f2abc623d1a87b4bdce9b4ca56 100644 (file)
 // headers
 // ----------------------------------------------------------------------------
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma implementation "dialogbase.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -112,7 +108,8 @@ void wxDialogBase::Init()
 {
     m_returnCode = 0;
     m_affirmativeId = wxID_OK;
-    
+    m_escapeId = wxID_ANY;
+
     // the dialogs have this flag on by default to prevent the events from the
     // dialog controls from reaching the parent frame which is usually
     // undesirable and can lead to unexpected and hard to find bugs