diff options
-rw-r--r-- | libindicator/indicator-object.c | 6 | ||||
-rw-r--r-- | libindicator/indicator-object.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c index bb154fc..00ede90 100644 --- a/libindicator/indicator-object.c +++ b/libindicator/indicator-object.c @@ -54,3 +54,9 @@ indicator_object_finalize (GObject *object) G_OBJECT_CLASS (indicator_object_parent_class)->finalize (object); return; } + +IndicatorObject * +indicator_object_new_from_file (const gchar * file) +{ + return NULL; +} diff --git a/libindicator/indicator-object.h b/libindicator/indicator-object.h index 9c6c103..fd7f470 100644 --- a/libindicator/indicator-object.h +++ b/libindicator/indicator-object.h @@ -27,6 +27,7 @@ struct _IndicatorObject { }; GType indicator_object_get_type (void); +IndicatorObject * indicator_object_new_from_file (const gchar * file); G_END_DECLS |