]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dialog.cpp
basic support for encodings for wxMSW::wxFont
[wxWidgets.git] / src / msw / dialog.cpp
index dde02e52a8f4daa728c8842223ce669970ef88c2..d8ef9f1f46ea809219cf4c07b9c3a86f711c4c28 100644 (file)
@@ -123,7 +123,7 @@ bool wxDialog::Create(wxWindow *parent, wxWindowID id,
     // resizeable or not (but a resizeable dialog always has caption -
     // otherwise it would look too strange)
     const wxChar *dlg;
-    if ( style & wxTHICK_FRAME )
+    if ( style & wxRESIZE_BORDER )
         dlg = _T("wxResizeableDialog");
     else if ( style & wxCAPTION )
         dlg = _T("wxCaptionDialog");
@@ -281,6 +281,11 @@ bool wxDialog::IsShown() const
   return m_isShown;
 }
 
+bool wxDialog::IsModal() const
+{
+    return wxModalDialogs.Find((wxDialog *)this) != 0; // const_cast
+}
+
 bool wxDialog::Show(bool show)
 {
   m_isShown = show;