]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/listbox.cpp
Convert to and from \n and \r in wxMac's text
[wxWidgets.git] / src / gtk1 / listbox.cpp
index 4eefc235d3fd5ca07e2ea6b9705f2cf625f1d943..c63ba920e37de4a63809b862a359ab1bd997e02a 100644 (file)
@@ -335,7 +335,6 @@ bool wxListBox::Create( wxWindow *parent, wxWindowID id,
 {
     m_needParent = TRUE;
     m_acceptsFocus = TRUE;
-    m_isListBox = TRUE;
     m_prevSelection = 0;  // or -1 ??
     m_blockEvent = FALSE;
 
@@ -1064,4 +1063,13 @@ wxSize wxListBox::DoGetBestSize() const
     return wxSize(lbWidth, lbHeight);
 }
 
-#endif
+void wxListBox::FixUpMouseEvent(GtkWidget *widget, wxCoord& x, wxCoord& y)
+{
+    // the mouse event coords are relative to the listbox items, we need to
+    // translate them to the normal client coords
+    x += widget->allocation.x;
+    y += widget->allocation.y;
+}
+
+#endif // wxUSE_LISTBOX
+