wxDialogs now use GTK_WINDOW_DIALOG,

Corrected cursor setting bug with right aligned checkboxes,
  Disabled code in ~wxView that unset the m_currentView,
  One more thing I forgot.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4314 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-11-02 18:11:18 +00:00
parent 4ff9eba644
commit 173348db5f
7 changed files with 13 additions and 11 deletions

View File

@@ -2459,13 +2459,14 @@ void wxWindow::SetFocus()
if (m_wxwindow)
{
gtk_widget_grab_focus (m_wxwindow);
if (!GTK_WIDGET_HAS_FOCUS (m_wxwindow))
gtk_widget_grab_focus (m_wxwindow);
return;
}
if (m_widget)
{
if (GTK_WIDGET_CAN_FOCUS(m_widget) /*&& !GTK_WIDGET_HAS_FOCUS (connect_widget)*/ )
if (GTK_WIDGET_CAN_FOCUS(m_widget) && !GTK_WIDGET_HAS_FOCUS (m_widget) )
{
gtk_widget_grab_focus (m_widget);
}