aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-22 17:08:17 -0500
committerTed Gould <ted@canonical.com>2009-04-22 17:08:17 -0500
commit18397c82725b7cee22bf82b0539a4fb36dd49fe9 (patch)
treed95903ace28043fd825677419bdc9a04c7f2bdd7 /src
parentef4bfdebdb12d945e2fca8583657ecb10978deba (diff)
downloadlibayatana-indicator-18397c82725b7cee22bf82b0539a4fb36dd49fe9.tar.gz
libayatana-indicator-18397c82725b7cee22bf82b0539a4fb36dd49fe9.tar.bz2
libayatana-indicator-18397c82725b7cee22bf82b0539a4fb36dd49fe9.zip
Turning versions into a function and adding a name symbol. Not yet used though.
Diffstat (limited to 'src')
-rw-r--r--src/applet-main.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/applet-main.c b/src/applet-main.c
index 74d948a..f979beb 100644
--- a/src/applet-main.c
+++ b/src/applet-main.c
@@ -80,9 +80,12 @@ load_module (const gchar * name, GtkWidget * menu)
g_free(fullpath);
g_return_val_if_fail(module != NULL, FALSE);
- gchar * version;
- g_return_val_if_fail(g_module_symbol(module, INDICATOR_VERSION_S, (gpointer *)(&version)), FALSE);
- g_return_val_if_fail(INDICATOR_VERSION_CHECK(version), FALSE);
+ get_version_t lget_version;
+ g_return_val_if_fail(g_module_symbol(module, INDICATOR_GET_VERSION_S, (gpointer *)(&lget_version)), FALSE);
+ if (!INDICATOR_VERSION_CHECK(lget_version())) {
+ g_warning("Indicator using API version '%s' we're expecting '%s'", lget_version(), INDICATOR_VERSION);
+ return FALSE;
+ }
get_label_t lget_label;
g_return_val_if_fail(g_module_symbol(module, INDICATOR_GET_LABEL_S, (gpointer *)(&lget_label)), FALSE);