diff options
author | Ted Gould <ted@gould.cx> | 2010-12-06 16:38:29 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-12-06 16:38:29 -0600 |
commit | 07aeca3802b2e19878b24637f1f73d971c7be101 (patch) | |
tree | 545dc7b2fbf60bc9187d8b609914d40ec815be3d /src/app-indicator.c | |
parent | a92f87080dea6c0d16bfb55bf75e155658bfa372 (diff) | |
download | libayatana-appindicator-07aeca3802b2e19878b24637f1f73d971c7be101.tar.gz libayatana-appindicator-07aeca3802b2e19878b24637f1f73d971c7be101.tar.bz2 libayatana-appindicator-07aeca3802b2e19878b24637f1f73d971c7be101.zip |
Switching the names of the generated files to stop automake from thinking it needs to build the XML files.
Diffstat (limited to 'src/app-indicator.c')
-rw-r--r-- | src/app-indicator.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index 0b31018..0d469ac 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -48,8 +48,8 @@ License version 3 and version 2.1 along with this program. If not, see #include "app-indicator-enum-types.h" #include "application-service-marshal.h" -#include "notification-watcher.xml.h" -#include "notification-item.xml.h" +#include "gen-notification-watcher.xml.h" +#include "gen-notification-item.xml.h" #include "dbus-shared.h" #include "generate-id.h" @@ -561,7 +561,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_xml, &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); @@ -579,7 +579,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_xml, &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); |