GCC4 build issues.
2005-06-10 Kjartan Maraas <kmaraas@gnome.org> * applier.c: (render_wallpaper), (is_nautilus_running): GCC4 build issues.
This commit is contained in:
parent
8865b5d086
commit
49601b934d
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-06-10 Kjartan Maraas <kmaraas@gnome.org>
|
||||||
|
|
||||||
|
* applier.c: (render_wallpaper), (is_nautilus_running): GCC4
|
||||||
|
build issues.
|
||||||
|
|
||||||
2005-05-08 Richard Hoelscher <rah@rahga.com>
|
2005-05-08 Richard Hoelscher <rah@rahga.com>
|
||||||
|
|
||||||
* applier.c (refresh_render): Remove egg_pixbuf_new_from_file_at_size,
|
* applier.c (refresh_render): Remove egg_pixbuf_new_from_file_at_size,
|
||||||
|
|
|
@ -758,8 +758,8 @@ render_background (BGApplier *bg_applier, const BGPreferences *prefs)
|
||||||
static void
|
static void
|
||||||
render_wallpaper (BGApplier *bg_applier, const BGPreferences *prefs)
|
render_wallpaper (BGApplier *bg_applier, const BGPreferences *prefs)
|
||||||
{
|
{
|
||||||
GdkRectangle src_geom;
|
GdkRectangle src_geom = { 0, };
|
||||||
GdkRectangle dest_geom;
|
GdkRectangle dest_geom = { 0, };
|
||||||
GdkRectangle virtual_geom;
|
GdkRectangle virtual_geom;
|
||||||
GdkPixbuf *prescaled_pixbuf = NULL;
|
GdkPixbuf *prescaled_pixbuf = NULL;
|
||||||
guint alpha;
|
guint alpha;
|
||||||
|
@ -1624,8 +1624,8 @@ is_nautilus_running (void)
|
||||||
bytes_after == 0 &&
|
bytes_after == 0 &&
|
||||||
actual_format == 8 &&
|
actual_format == 8 &&
|
||||||
data != NULL &&
|
data != NULL &&
|
||||||
!strcmp (data, "desktop_window") &&
|
!strcmp ((char *)data, "desktop_window") &&
|
||||||
!strcmp (data + strlen (data) + 1, "Nautilus"))
|
!strcmp ((char *)data + strlen ((char *)data) + 1, "Nautilus"))
|
||||||
running = TRUE;
|
running = TRUE;
|
||||||
else
|
else
|
||||||
running = FALSE;
|
running = FALSE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue