From: Ben Pfaff Date: Sun, 3 Jan 2016 04:18:29 +0000 (-0800) Subject: psppire-dialog-action: Fix compilation error. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=30cea3a93e0c674cfd581b9ae9e4f3cb5847e639 psppire-dialog-action: Fix compilation error. --- diff --git a/src/ui/gui/psppire-dialog-action.c b/src/ui/gui/psppire-dialog-action.c index 6bd1645460..32cfcc702d 100644 --- a/src/ui/gui/psppire-dialog-action.c +++ b/src/ui/gui/psppire-dialog-action.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2012 Free Software Foundation + Copyright (C) 2012, 2016 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -243,6 +243,6 @@ psppire_dialog_action_set_refresh (PsppireDialogAction *pda, void psppire_dialog_action_set_activation (gpointer class, activation activate) { - GTK_ACTION_CLASS (class)->activate = activate; + GTK_ACTION_CLASS (class)->activate = (void (*)(GtkAction *)) activate; }