diff options
author | Ted Gould <ted@gould.cx> | 2010-12-08 11:00:54 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-12-08 11:00:54 -0600 |
commit | 41edd6b1dd171d887fe6bc860a1451358b630add (patch) | |
tree | 4b57a01d268833b2a7f609bb44d00643e63b5d87 /src/app-indicator.c | |
parent | a977f312789bec573e7256b50531f44bc8d45a85 (diff) | |
download | libayatana-appindicator-41edd6b1dd171d887fe6bc860a1451358b630add.tar.gz libayatana-appindicator-41edd6b1dd171d887fe6bc860a1451358b630add.tar.bz2 libayatana-appindicator-41edd6b1dd171d887fe6bc860a1451358b630add.zip |
Adding in some '_' so that the symbols don't get exported in the library.
Diffstat (limited to 'src/app-indicator.c')
-rw-r--r-- | src/app-indicator.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index 2b45b85..404d69d 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -477,7 +477,7 @@ app_indicator_class_init (AppIndicatorClass *klass) if (item_node_info == NULL) { GError * error = NULL; - item_node_info = g_dbus_node_info_new_for_xml(notification_item, &error); + item_node_info = g_dbus_node_info_new_for_xml(_notification_item, &error); if (error != NULL) { g_error("Unable to parse Notification Item DBus interface: %s", error->message); g_error_free(error); @@ -495,7 +495,7 @@ app_indicator_class_init (AppIndicatorClass *klass) if (watcher_node_info == NULL) { GError * error = NULL; - watcher_node_info = g_dbus_node_info_new_for_xml(notification_watcher, &error); + watcher_node_info = g_dbus_node_info_new_for_xml(_notification_watcher, &error); if (error != NULL) { g_error("Unable to parse Notification Item DBus interface: %s", error->message); g_error_free(error); @@ -2300,7 +2300,7 @@ app_indicator_get_ordering_index (AppIndicator *self) g_return_val_if_fail (IS_APP_INDICATOR (self), 0); if (self->priv->ordering_index == 0) { - return generate_id(self->priv->category, self->priv->id); + return _generate_id(self->priv->category, self->priv->id); } else { return self->priv->ordering_index; } |