]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/combobox.cpp
changes to make wxGTK compile with GTK+ 2.0: now it does but the minimal
[wxWidgets.git] / src / univ / combobox.cpp
index dc644e1699d1ed8012946d150aea74e53587a9f5..54ce379716f3f4638b5de833d2835b8ab2027c6e 100644 (file)
@@ -314,8 +314,9 @@ void wxComboControl::DoMoveWindow(int x, int y, int width, int height)
     wxSize sizeBtn = m_btn->GetBestSize();
 
     wxCoord wText = width - sizeBtn.x;
-    m_text->SetSize(x, y, wText, height);
-    m_btn->SetSize(x + wText, y, sizeBtn.x, height);
+    wxPoint p = GetParent() ? GetParent()->GetClientAreaOrigin() : wxPoint(0,0);
+    m_text->SetSize(x - p.x, y - p.y, wText, height);
+    m_btn->SetSize(x - p.x + wText, y - p.y, sizeBtn.x, height);
 }
 
 // ----------------------------------------------------------------------------