aboutsummaryrefslogtreecommitdiff
path: root/libindicator
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-11-03 20:27:00 -0600
committerTed Gould <ted@canonical.com>2009-11-03 20:27:00 -0600
commit9fa35baeaeb00305c0c446fdcbb54e58fa743f3b (patch)
treec1f1e75516d4cbf101cb4890b4941018b8ea962c /libindicator
parent0aa210608dda6d29c178126e0ad1d613e30e3cd3 (diff)
parent541f18ceb56e3db6d342ae3dbac51e527592614e (diff)
downloadlibayatana-indicator-9fa35baeaeb00305c0c446fdcbb54e58fa743f3b.tar.gz
libayatana-indicator-9fa35baeaeb00305c0c446fdcbb54e58fa743f3b.tar.bz2
libayatana-indicator-9fa35baeaeb00305c0c446fdcbb54e58fa743f3b.zip
Syncing up with trunk before merging.
Diffstat (limited to 'libindicator')
-rw-r--r--libindicator/indicator-object.c8
-rw-r--r--libindicator/indicator-object.h3
2 files changed, 7 insertions, 4 deletions
diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c
index ed9214c..0554b48 100644
--- a/libindicator/indicator-object.c
+++ b/libindicator/indicator-object.c
@@ -1,5 +1,6 @@
/*
-An interface for indicators to link to for creation.
+An object to represent loadable indicator modules to make loading
+them easy and objectified.
Copyright 2009 Canonical Ltd.
@@ -33,7 +34,8 @@ License along with this library. If not, see
@icon: The icon representing this indicator or #NULL if none.
@menu: The menu representing this indicator or #NULL if none.
- Private data for the object.
+ Structure to define the memory for the private area
+ of the object instance.
*/
typedef struct _IndicatorObjectPrivate IndicatorObjectPrivate;
struct _IndicatorObjectPrivate {
@@ -67,7 +69,7 @@ indicator_object_class_init (IndicatorObjectClass *klass)
return;
}
-/* Inititalize an instance */
+/* Initialize an instance */
static void
indicator_object_init (IndicatorObject *self)
{
diff --git a/libindicator/indicator-object.h b/libindicator/indicator-object.h
index ea3f52e..1d2a065 100644
--- a/libindicator/indicator-object.h
+++ b/libindicator/indicator-object.h
@@ -1,5 +1,6 @@
/*
-An interface for indicators to link to for creation.
+An object to represent loadable indicator modules to make loading
+them easy and objectified.
Copyright 2009 Canonical Ltd.