[maemo-commits] [maemo-commits] r12245 - in projects/haf/trunk/hildon-desktop: . libhildondesktop src
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Tue Jun 12 09:46:01 EEST 2007
- Previous message: [maemo-commits] r12244 - in projects/haf/trunk/hildon-desktop: . src
- Next message: [maemo-commits] r12246 - in projects/haf/trunk/hildon-theme-layout-4: . data rc
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: moimart Date: 2007-06-12 09:45:37 +0300 (Tue, 12 Jun 2007) New Revision: 12245 Modified: projects/haf/trunk/hildon-desktop/ChangeLog projects/haf/trunk/hildon-desktop/libhildondesktop/hildon-home-area.c projects/haf/trunk/hildon-desktop/src/hd-applications-menu.c projects/haf/trunk/hildon-desktop/src/hd-panel-window.c Log: 2007-06-12 Moises Martinez <moises.martinez at nokia.com> * src/hd-applications-menu.c: - It was creating the hildon_desktop_popup_window with "1" extra window. Now is set to "0" extra windows. * src/hd-panel-window.c: - XFixesFetchRegion needs an int and gcc 4.1.2 is really picky * libhildondesktop/hildon-home-area.c: - XQueryTree needs an unsigned int and gcc 4.1.2 is really picky :) * ChangeLog updated. Modified: projects/haf/trunk/hildon-desktop/ChangeLog =================================================================== --- projects/haf/trunk/hildon-desktop/ChangeLog 2007-06-11 21:28:57 UTC (rev 12244) +++ projects/haf/trunk/hildon-desktop/ChangeLog 2007-06-12 06:45:37 UTC (rev 12245) @@ -1,3 +1,13 @@ +2007-06-12 Moises Martinez <moises.martinez at nokia.com> + + * src/hd-applications-menu.c: + - It was creating the hildon_desktop_popup_window with "1" extra + window. Now is set to "0" extra windows. + * src/hd-panel-window.c: + - XFixesFetchRegion needs an int and gcc 4.1.2 is really picky + * libhildondesktop/hildon-home-area.c: + - XQueryTree needs an unsigned int and gcc 4.1.2 is really picky :) + 2007-06-11 Moises Martinez <moises.martinez at nokia.com> * src/hd-switcher-menu.c: Call changed_stack_cb when removing an Modified: projects/haf/trunk/hildon-desktop/libhildondesktop/hildon-home-area.c =================================================================== --- projects/haf/trunk/hildon-desktop/libhildondesktop/hildon-home-area.c 2007-06-11 21:28:57 UTC (rev 12244) +++ projects/haf/trunk/hildon-desktop/libhildondesktop/hildon-home-area.c 2007-06-12 06:45:37 UTC (rev 12245) @@ -1326,7 +1326,7 @@ XserverRegion region; GdkDrawable *drawable; Window *wchildren, root, parent; - int n_children, i; + guint n_children, i; gdk_window_get_internal_paint_info (widget->window, &drawable, Modified: projects/haf/trunk/hildon-desktop/src/hd-applications-menu.c =================================================================== --- projects/haf/trunk/hildon-desktop/src/hd-applications-menu.c 2007-06-11 21:28:57 UTC (rev 12244) +++ projects/haf/trunk/hildon-desktop/src/hd-applications-menu.c 2007-06-12 06:45:37 UTC (rev 12245) @@ -753,7 +753,7 @@ popup_window = HILDON_DESKTOP_POPUP_WINDOW - (hildon_desktop_popup_window_new (1, + (hildon_desktop_popup_window_new (0, GTK_ORIENTATION_HORIZONTAL, HD_POPUP_WINDOW_DIRECTION_RIGHT_BOTTOM)); Modified: projects/haf/trunk/hildon-desktop/src/hd-panel-window.c =================================================================== --- projects/haf/trunk/hildon-desktop/src/hd-panel-window.c 2007-06-11 21:28:57 UTC (rev 12244) +++ projects/haf/trunk/hildon-desktop/src/hd-panel-window.c 2007-06-12 06:45:37 UTC (rev 12245) @@ -213,7 +213,7 @@ XserverRegion parts; XDamageNotifyEvent *ev = xevent; XRectangle *rects; - guint i, n_rect; + gint i, n_rect; parts = XFixesCreateRegion (GDK_DISPLAY (), 0, 0);
- Previous message: [maemo-commits] r12244 - in projects/haf/trunk/hildon-desktop: . src
- Next message: [maemo-commits] r12246 - in projects/haf/trunk/hildon-theme-layout-4: . data rc
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]