]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/dialog.cpp
yet another fix for wxTextCtrl bg colour (patch 462838)
[wxWidgets.git] / src / univ / dialog.cpp
index 6a29dbf93d7a6395f273811a40fa8e78a35fa55b..0f5e47b9a4a4cec6fbda67794b0b6579b8248450 100644 (file)
@@ -6,14 +6,32 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
+// ============================================================================
+// declarations
+// ============================================================================
+
+// ----------------------------------------------------------------------------
+// headers
+// ----------------------------------------------------------------------------
+
 #ifdef __GNUG__
-#pragma implementation "univdialog.h"
+    #pragma implementation "univdialog.h"
+#endif
+
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+    #pragma hdrstop
+#endif
+
+#ifndef WX_PRECOMP
+    #include "wx/dialog.h"
+    #include "wx/utils.h"
+    #include "wx/app.h"
 #endif
 
-#include "wx/dialog.h"
-#include "wx/utils.h"
 #include "wx/evtloop.h"
-#include "wx/app.h"
 
 //-----------------------------------------------------------------------------
 // wxDialog
@@ -46,7 +64,7 @@ bool wxDialog::Create(wxWindow *parent,
                       const wxPoint &pos, const wxSize &size,
                       long style, const wxString &name)
 {
-    SetExtraStyle(GetExtraStyle() | wxTLW_EX_DIALOG);
+    SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG);
 
     // all dialogs should have tab traversal enabled
     style |= wxTAB_TRAVERSAL;
@@ -172,8 +190,6 @@ int wxDialog::ShowModal()
         }
     }
 
-    wxBusyCursorSuspender cs; // temporarily suppress the busy cursor
-
     Show(TRUE);
 
     m_isShowingModal = TRUE;