]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/dialog.h
Add basic history api and implement it under gtk.
[wxWidgets.git] / include / wx / msw / dialog.h
index 51edf8c0716b3f150881da92a92cd90244129b2e..5726427683c97602069467fe6d147fd935870df0 100644 (file)
@@ -16,7 +16,7 @@
 
 // this option is always enabled (there doesn't seem to be any good reason to
 // disable it) for desktop Windows versions but Windows CE dialogs are usually
-// not resizeable and never show resize gripper anyhow so don't use it there
+// not resizable and never show resize gripper anyhow so don't use it there
 #ifdef __WXWINCE__
     #define wxUSE_DIALOG_SIZEGRIP 0
 #else
@@ -108,19 +108,13 @@ public:
     WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
 
 protected:
-    // find the window to use as parent for this dialog if none has been
-    // specified explicitly by the user
-    //
-    // may return NULL
-    wxWindow *FindSuitableParent() const;
-
     // common part of all ctors
     void Init();
 
 private:
 #if wxUSE_DIALOG_SIZEGRIP
     // these functions deal with the gripper window shown in the corner of
-    // resizeable dialogs
+    // resizable dialogs
     void CreateGripper();
     void DestroyGripper();
     void ShowGripper(bool show);