From c4d007653c85d38e1706d2f668c2de52e71956e6 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Wed, 10 Feb 2010 22:06:30 +0000 Subject: [PATCH] fix build break svn path=/trunk/boinc/; revision=20513 --- clientgui/gtk/taskbarex.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/clientgui/gtk/taskbarex.cpp b/clientgui/gtk/taskbarex.cpp index 1ecd482f5d..d40295cbf2 100644 --- a/clientgui/gtk/taskbarex.cpp +++ b/clientgui/gtk/taskbarex.cpp @@ -51,10 +51,13 @@ extern "C" { statis_icon_notification_closed(NotifyNotification* notification, wxTaskBarIconEx* taskBarIcon) { gint id, closed_reason; - g_object_get(notification, - "id", &intval, + + g_object_get( + notification, + "id", &id, "closed-reason", &closed_reason, - NULL); + NULL + ); if (id == taskBarIcon->GetNotificationID()) { fprintf(stdout, "Notification Closed: id: %d closed-reason: %d", id, closed_reason);