aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-08 17:09:21 -0400
committerTed Gould <ted@canonical.com>2009-10-08 17:09:21 -0400
commitb4d20eb0049cc36dbdd03754f820bd46df6e60ec (patch)
tree5ae45e5009c54d912d5ee09c7294bde00db04731
parentc594126850cb7b59294069f2711fa0a5d96febbb (diff)
downloadlibayatana-indicator-b4d20eb0049cc36dbdd03754f820bd46df6e60ec.tar.gz
libayatana-indicator-b4d20eb0049cc36dbdd03754f820bd46df6e60ec.tar.bz2
libayatana-indicator-b4d20eb0049cc36dbdd03754f820bd46df6e60ec.zip
Adding a function to create an object from a file
-rw-r--r--libindicator/indicator-object.c6
-rw-r--r--libindicator/indicator-object.h1
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