]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/listbox.cpp
Eliminated some warnings under Windows; wxGetHomeDir problem in wxFile;
[wxWidgets.git] / src / gtk1 / listbox.cpp
index fdd21a83ee8081060299261f9a25167403766594..4732b2814d36a9d46f85eb764f805b2af9382788 100644 (file)
@@ -426,4 +426,19 @@ void wxListBox::SetFont( const wxFont &font )
   }
 }
 
+bool wxListBox::IsOwnGtkWindow( GdkWindow *window )
+{
+  if (wxWindow::IsOwnGtkWindow( window )) return TRUE;
+  
+  GList *child = m_list->children;
+  while (child)
+  {
+    GtkBin *bin = (GtkBin*) child->data;
+    if (bin->child->window == window) return TRUE;
+    child = child->next;
+  }
+  
+  return FALSE;
+}
+