From 07c7bb1b4870184989d7dd79cc3fcd63338aada2 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 3 Nov 2009 09:31:53 -0600 Subject: Comments in the copyright statements updated. --- libindicator/indicator-object.c | 3 ++- libindicator/indicator-object.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'libindicator') diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c index 5921ce5..2908ed9 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. diff --git a/libindicator/indicator-object.h b/libindicator/indicator-object.h index cb01b85..fa6373d 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. -- cgit v1.2.3 From b3fc7791fdf7bea9787555b63c33e0b1f67390c4 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 3 Nov 2009 09:34:00 -0600 Subject: Typo --- libindicator/indicator-object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libindicator') diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c index 2908ed9..72cea9d 100644 --- a/libindicator/indicator-object.c +++ b/libindicator/indicator-object.c @@ -68,7 +68,7 @@ indicator_object_class_init (IndicatorObjectClass *klass) return; } -/* Inititalize an instance */ +/* Initialize an instance */ static void indicator_object_init (IndicatorObject *self) { -- cgit v1.2.3 From c09917d4792ccbd9fbd773874ae6e75e73c32a6e Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 3 Nov 2009 17:06:39 -0600 Subject: Changing comment on private struct. --- libindicator/indicator-object.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libindicator') diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c index 72cea9d..ce07ad6 100644 --- a/libindicator/indicator-object.c +++ b/libindicator/indicator-object.c @@ -34,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 { -- cgit v1.2.3