From: Christian Dywan Date: Thu, 14 Oct 2010 19:11:01 +0000 (+0200) Subject: Don't declare command in callback as UniqueCommand X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca2582c5e3d402db960b688f5c287efa5e6e7293;p=midori Don't declare command in callback as UniqueCommand Since we're using a custom command it is in fact not part of the enumeration and thus some compilers complain. --- diff --git a/midori/midori-app.c b/midori/midori-app.c index 9dddad6c..14f10ca0 100644 --- a/midori/midori-app.c +++ b/midori/midori-app.c @@ -535,7 +535,7 @@ midori_app_osso_rpc_handler_cb (const gchar* interface, #elif HAVE_UNIQUE static UniqueResponse midori_browser_message_received_cb (UniqueApp* instance, - UniqueCommand command, + gint command, UniqueMessageData* message, guint timestamp, MidoriApp* app)