Re: gkrellm 2.3.6-rc1 release candidate available

Jindřich Makovička <[email protected]> Sun, 26 Oct 2014 16:19:45 +0000
Newsgroups gmane.comp.gnome.apps.gkrellm
Message-ID <CAHmvugdM-KGOmxrYgabVBkXRp3Ea4_Y79=h1QORXcODcvujd-Q@mail.gmail.com>
Hi,

On Thu Oct 16 2014 at 8:35:29 PM Bill Wilson <[email protected]>
wrote:

>
> It's been a while for me, but it's time for some GKrellM progress
> and there's a 2.3.6-rc1 release candidate tarball available:
>
>     http://gkrellm.srcbox.net/gkrellm-2.3.6-rc1.tar.bz2
>
> Or you can clone/pull the git repository.
>
> Bug reports/fixes and translation updates anybody wants to send me
> will be updated in git and hopefully the final 2.3.6 can be out soon.
>

I just briefly reviewed my GTK related commits and found that I introduced
a regresion due to a wrong copy&paste. Patch attached.
0001-fix-copy-paste-error.patch (text/x-patch, 769 B)
From c770baaf4cb9b237115701820734f03905deb7c0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jind=C5=99ich=20Makovi=C4=8Dka?= <[email protected]>
Date: Sun, 26 Oct 2014 17:15:49 +0100
Subject: [PATCH] fix copy/paste error

This regression was introduced by commit
6365d18ad0ab6f3646e220bfc493bb2422c6f9aa
---
 src/plugins.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins.c b/src/plugins.c
index 18278fa..55cd157 100644
--- a/src/plugins.c
+++ b/src/plugins.c
@@ -1349,7 +1349,7 @@ replace_plugins()
 			{
 			gtk_box_pack_start(GTK_BOX(gkrellm_monitor_vbox()),
 					mon->privat->main_vbox, FALSE, FALSE, 0);
-			g_object_ref(G_OBJECT(mon->privat->main_vbox));
+			g_object_unref(G_OBJECT(mon->privat->main_vbox));
 			}
 		}
 	}
-- 
2.1.1