[maemo-commits] [maemo-commits] r14582 - in projects/haf/trunk/hildon-desktop: . libhildondesktop src
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Wed Oct 24 12:40:53 EEST 2007
- Previous message: [maemo-commits] r14581 - projects/haf/jhbuild_modules
- Next message: [maemo-commits] r14583 - in projects/haf/trunk/hildon-desktop/debian: . config
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: jobi Date: 2007-10-24 12:40:51 +0300 (Wed, 24 Oct 2007) New Revision: 14582 Modified: projects/haf/trunk/hildon-desktop/ChangeLog projects/haf/trunk/hildon-desktop/libhildondesktop/hildon-desktop-panel-window-composite.c projects/haf/trunk/hildon-desktop/src/hd-home-background.c Log: 2007-10-24 Johan Bilien <johan.bilien at nokia.com> * src/hd-home-background.c, libhildondesktop/hildon-desktop-panel-window-composite.c: fixed compilation warnings. Patch courtesy of Xan L?\195?\179pez. Modified: projects/haf/trunk/hildon-desktop/ChangeLog =================================================================== --- projects/haf/trunk/hildon-desktop/ChangeLog 2007-10-24 08:31:35 UTC (rev 14581) +++ projects/haf/trunk/hildon-desktop/ChangeLog 2007-10-24 09:40:51 UTC (rev 14582) @@ -1,5 +1,11 @@ -2007-10-18 Johan Bilien <johan.bilien at nokia.com> +2007-10-24 Johan Bilien <johan.bilien at nokia.com> + * src/hd-home-background.c, + libhildondesktop/hildon-desktop-panel-window-composite.c: + fixed compilation warnings. Patch courtesy of Xan López. + +2007-10-23 Johan Bilien <johan.bilien at nokia.com> + * doc/libhildondesktop: moved libhildondesktop documentation to its own subdirectory, with its own gtk-doc module. Modified: projects/haf/trunk/hildon-desktop/libhildondesktop/hildon-desktop-panel-window-composite.c =================================================================== --- projects/haf/trunk/hildon-desktop/libhildondesktop/hildon-desktop-panel-window-composite.c 2007-10-24 08:31:35 UTC (rev 14581) +++ projects/haf/trunk/hildon-desktop/libhildondesktop/hildon-desktop-panel-window-composite.c 2007-10-24 09:40:51 UTC (rev 14582) @@ -619,8 +619,8 @@ hildon_desktop_picture_and_mask_from_file (filename, &priv->pattern_picture, &priv->pattern_mask, - &priv->pattern_width, - &priv->pattern_height); + (gint*)&priv->pattern_width, + (gint*)&priv->pattern_height); if (priv->pattern_width != priv->width || priv->pattern_height != priv->height) Modified: projects/haf/trunk/hildon-desktop/src/hd-home-background.c =================================================================== --- projects/haf/trunk/hildon-desktop/src/hd-home-background.c 2007-10-24 08:31:35 UTC (rev 14581) +++ projects/haf/trunk/hildon-desktop/src/hd-home-background.c 2007-10-24 09:40:51 UTC (rev 14582) @@ -455,7 +455,7 @@ file_to_use = filename; } - gdk_drawable_get_size (window, &width, &height); + gdk_drawable_get_size (window, (gint*)&width, (gint*)&height); picture = hildon_desktop_picture_from_color (color, width, height); g_return_if_fail (picture != None); @@ -607,7 +607,7 @@ file_to_use = filename; } - gdk_drawable_get_size (window, &width, &height); + gdk_drawable_get_size (window, (gint*)&width, (gint*)&height); data = g_new (struct cb_data, 1);
- Previous message: [maemo-commits] r14581 - projects/haf/jhbuild_modules
- Next message: [maemo-commits] r14583 - in projects/haf/trunk/hildon-desktop/debian: . config
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]