]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dialog.cpp
Removed a few old wxDebugMsg (now wxLogDebug)
[wxWidgets.git] / src / gtk / dialog.cpp
index 0e26ee1808b0eab91ca9751f4d7ba3a6ccfb3660..067aa65fac693772d9d452a9b056bcc620c41b36 100644 (file)
@@ -254,11 +254,11 @@ void wxDialog::OnSize( wxSizeEvent &WXUNUSED(event) )
     else 
     {
         // no child: go out !
-        if (!GetChildren()->First()) return;
+        if (!GetChildren().First()) return;
       
         // do we have exactly one child?
         wxWindow *child = (wxWindow *) NULL;
-        for(wxNode *node = GetChildren()->First(); node; node = node->Next())
+        for(wxNode *node = GetChildren().First(); node; node = node->Next())
         {
             wxWindow *win = (wxWindow *)node->Data();
             if (!IS_KIND_OF(win,wxFrame) && !IS_KIND_OF(win,wxDialog))