fix build break

svn path=/trunk/boinc/; revision=20513
This commit is contained in:
Rom Walton 2010-02-10 22:06:30 +00:00
parent 448347a886
commit c4d007653c
1 changed files with 6 additions and 3 deletions

View File

@ -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);