gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1647-g2de9190
Date: Tue, 09 Jul 2013 14:07:23 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  2de9190c1ee78a5a2ad9fe4789b7329b545aeb63 (commit)
      from  953e044ebe92c80406f7fc655dd45dceef6f1ae4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=2de9190c1ee78a5a2ad9fe4789b7329b545aeb63


commit 2de9190c1ee78a5a2ad9fe4789b7329b545aeb63
Author: Sandro Santilli <address@hidden>
Date:   Tue Jul 9 15:46:32 2013 +0200

    Replace deprecated gdk_pixbuf_unref calls with g_object_unref

diff --git a/gui/gtk/gtk.cpp b/gui/gtk/gtk.cpp
index 4a57fbe..0db93c0 100644
--- a/gui/gtk/gtk.cpp
+++ b/gui/gtk/gtk.cpp
@@ -1891,7 +1891,7 @@ GtkGui::showAboutDialog()
 
     gtk_widget_show (aboutWidget);
 
-    if (logo_pixbuf) gdk_pixbuf_unref(logo_pixbuf);
+    if (logo_pixbuf) g_object_unref(logo_pixbuf);
 }
 
 ///////////////////////////////////////////////////////////////////////////////
@@ -2241,7 +2241,7 @@ addGnashIcon(GtkWindow* window)
     GdkPixbuf *window_icon_pixbuf = createPixbuf ("GnashG.png");
     if (window_icon_pixbuf) {
         gtk_window_set_icon (GTK_WINDOW (window), window_icon_pixbuf);
-        gdk_pixbuf_unref (window_icon_pixbuf);
+        g_object_unref (window_icon_pixbuf);
     }
 }
 

-----------------------------------------------------------------------

Summary of changes:
 gui/gtk/gtk.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]