aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-01-15 15:28:31 -0600
committerTed Gould <ted@gould.cx>2010-01-15 15:28:31 -0600
commitd334db5071495817e9dea5b50a2fc27709058410 (patch)
tree3c3674b542b4cf39856255aec21dc0fea2dd5fea
parent14b58238f792f17285dc61c6adb00ca764a5a3b6 (diff)
downloadlibayatana-indicator-d334db5071495817e9dea5b50a2fc27709058410.tar.gz
libayatana-indicator-d334db5071495817e9dea5b50a2fc27709058410.tar.bz2
libayatana-indicator-d334db5071495817e9dea5b50a2fc27709058410.zip
Fixing the signal comments.
-rw-r--r--libindicator/indicator-object.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c
index 8e1edef..3b00c97 100644
--- a/libindicator/indicator-object.c
+++ b/libindicator/indicator-object.c
@@ -92,7 +92,9 @@ indicator_object_class_init (IndicatorObjectClass *klass)
/**
IndicatorObject::entry-added:
@arg0: The #IndicatorObject object
-
+ @arg1: A pointer to the #IndicatorObjectEntry that
+ is being added.
+
Signaled when a new entry is added and should
be shown by the person using this object.
*/
@@ -107,7 +109,9 @@ indicator_object_class_init (IndicatorObjectClass *klass)
/**
IndicatorObject::entry-removed:
@arg0: The #IndicatorObject object
-
+ @arg1: A pointer to the #IndicatorObjectEntry that
+ is being removed.
+
Signaled when an entry is removed and should
be removed by the person using this object.
*/
@@ -121,9 +125,13 @@ indicator_object_class_init (IndicatorObjectClass *klass)
/**
IndicatorObject::entry-moved:
@arg0: The #IndicatorObject object
-
- Signaled when an entry is removed and should
- be removed by the person using this object.
+ @arg1: A pointer to the #IndicatorObjectEntry that
+ is being moved.
+ @arg2: The old location of the entry
+ @arg3: The new location of the entry
+
+ When the order of the entries change, then this signal
+ is sent to tell the new location.
*/
signals[ENTRY_MOVED] = g_signal_new (INDICATOR_OBJECT_SIGNAL_ENTRY_MOVED,
G_TYPE_FROM_CLASS(klass),