diff options
author | Ted Gould <ted@gould.cx> | 2011-01-27 16:34:06 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-01-27 16:34:06 -0600 |
commit | 2fdb33981e70fa164dbcb098bad1b7231e9698d8 (patch) | |
tree | f70e88a2579270ecf97f5d9c824869fd9a2ce9b5 | |
parent | 4dac00730b8831cab47459199a3944b0e35b6f78 (diff) | |
download | ayatana-indicator-datetime-2fdb33981e70fa164dbcb098bad1b7231e9698d8.tar.gz ayatana-indicator-datetime-2fdb33981e70fa164dbcb098bad1b7231e9698d8.tar.bz2 ayatana-indicator-datetime-2fdb33981e70fa164dbcb098bad1b7231e9698d8.zip |
Fixing type callback prototype and bumping dbusmenu version
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/indicator-datetime.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index a57d91e..5be861e 100644 --- a/configure.ac +++ b/configure.ac @@ -53,7 +53,7 @@ AC_ARG_WITH([gtk], INDICATOR_REQUIRED_VERSION=0.3.0 DBUSMENUGLIB_REQUIRED_VERSION=0.1.1 -DBUSMENUGTK_REQUIRED_VERSION=0.1.1 +DBUSMENUGTK_REQUIRED_VERSION=0.3.94 GIO_REQUIRED_VERSION=2.25.11 # Note: the GIO check below also ensures the proper glib with gsettings support is present INDICATOR_DISPLAY_OBJECTS=0.1.10 diff --git a/src/indicator-datetime.c b/src/indicator-datetime.c index 377cf17..c386300 100644 --- a/src/indicator-datetime.c +++ b/src/indicator-datetime.c @@ -1058,7 +1058,8 @@ generate_format_string (IndicatorDatetime * self) static gboolean new_calendar_item (DbusmenuMenuitem * newitem, DbusmenuMenuitem * parent, - DbusmenuClient * client) + DbusmenuClient * client, + gpointer user_data) { g_return_val_if_fail(DBUSMENU_IS_MENUITEM(newitem), FALSE); g_return_val_if_fail(DBUSMENU_IS_GTKCLIENT(client), FALSE); |