diff options
author | Ted Gould <ted@gould.cx> | 2010-01-15 15:28:31 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-15 15:28:31 -0600 |
commit | d334db5071495817e9dea5b50a2fc27709058410 (patch) | |
tree | 3c3674b542b4cf39856255aec21dc0fea2dd5fea /libindicator/indicator-object.c | |
parent | 14b58238f792f17285dc61c6adb00ca764a5a3b6 (diff) | |
download | libayatana-indicator-d334db5071495817e9dea5b50a2fc27709058410.tar.gz libayatana-indicator-d334db5071495817e9dea5b50a2fc27709058410.tar.bz2 libayatana-indicator-d334db5071495817e9dea5b50a2fc27709058410.zip |
Fixing the signal comments.
Diffstat (limited to 'libindicator/indicator-object.c')
-rw-r--r-- | libindicator/indicator-object.c | 18 |
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), |