[maemo-commits] [maemo-commits] r12654 - in projects/haf/trunk/gtk+: . gtk
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Wed Jul 4 17:42:37 EEST 2007
- Previous message: [maemo-commits] r12653 - in projects/haf/trunk/osso-gnome-vfs2/debian: . patches
- Next message: [maemo-commits] r12655 - in projects/haf/trunk/hildon-desktop: . data
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: xan Date: 2007-07-04 17:42:23 +0300 (Wed, 04 Jul 2007) New Revision: 12654 Modified: projects/haf/trunk/gtk+/ChangeLog projects/haf/trunk/gtk+/gtk/gtkentrycompletion.c Log: 2007-07-04 Xan Lopez <xan.lopez at nokia.com> * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup), (_gtk_entry_completion_popdown): and use ifndef instead of ifdef !. See you in 2 hours with another fix. Modified: projects/haf/trunk/gtk+/ChangeLog =================================================================== --- projects/haf/trunk/gtk+/ChangeLog 2007-07-04 14:33:47 UTC (rev 12653) +++ projects/haf/trunk/gtk+/ChangeLog 2007-07-04 14:42:23 UTC (rev 12654) @@ -1,6 +1,12 @@ 2007-07-04 Xan Lopez <xan.lopez at nokia.com> * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup), + (_gtk_entry_completion_popdown): and use ifndef instead + of ifdef !. See you in 2 hours with another fix. + +2007-07-04 Xan Lopez <xan.lopez at nokia.com> + + * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup), (_gtk_entry_completion_popdown): Used ifdef, not if, for the MAEMO_CHANGES guards... Modified: projects/haf/trunk/gtk+/gtk/gtkentrycompletion.c =================================================================== --- projects/haf/trunk/gtk+/gtk/gtkentrycompletion.c 2007-07-04 14:33:47 UTC (rev 12653) +++ projects/haf/trunk/gtk+/gtk/gtkentrycompletion.c 2007-07-04 14:42:23 UTC (rev 12654) @@ -1455,7 +1455,7 @@ gtk_widget_show (completion->priv->popup_window); -#ifdef !MAEMO_CHANGES +#ifndef MAEMO_CHANGES gtk_grab_add (completion->priv->popup_window); gdk_pointer_grab (completion->priv->popup_window->window, TRUE, GDK_BUTTON_PRESS_MASK | @@ -1473,7 +1473,7 @@ completion->priv->ignore_enter = FALSE; -#ifdef !MAEMO_CHANGES +#ifndef MAEMO_CHANGES gdk_pointer_ungrab (GDK_CURRENT_TIME); gtk_grab_remove (completion->priv->popup_window); #endif
- Previous message: [maemo-commits] r12653 - in projects/haf/trunk/osso-gnome-vfs2/debian: . patches
- Next message: [maemo-commits] r12655 - in projects/haf/trunk/hildon-desktop: . data
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]