]> Pileus Git - ~andy/gtk/blobdiff - gtk/gactionobserver.c
GtkIconTheme: fix regression from 0db32f0632ef4675bfcfc9ec201f7af157a48ab0
[~andy/gtk] / gtk / gactionobserver.c
index c9d4176c087d2979441a7655a2a7bc099199cd01..babd38aea8a29a4eb8aabc7542fa71aaeb6dc3df 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Copyright © 2011 Canonical Limited
  *
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as
  * published by the Free Software Foundation; either version 2 of the
  * licence or (at your option) any later version.
@@ -12,9 +12,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
- * USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  *
  * Authors: Ryan Lortie <desrt@desrt.ca>
  */
@@ -49,8 +47,6 @@ G_DEFINE_INTERFACE (GActionObserver, g_action_observer, G_TYPE_OBJECT)
  *  - even if quarking is acceptable, #GObject signal details are
  *    implemented by scanning a linked list, so there is no real
  *    decrease in complexity
- *
- * Since: 2.32
  */
 
 void
@@ -58,7 +54,7 @@ g_action_observer_default_init (GActionObserverInterface *class)
 {
 }
 
-/**
+/*
  * g_action_observer_action_added:
  * @observer: a #GActionObserver
  * @observable: the source of the event
@@ -74,9 +70,7 @@ g_action_observer_default_init (GActionObserverInterface *class)
  *
  * This function should only be called by objects with which the
  * observer has explicitly registered itself to receive events.
- *
- * Since: 2.32
- **/
+ */
 void
 g_action_observer_action_added (GActionObserver    *observer,
                                 GActionObservable  *observable,
@@ -91,7 +85,7 @@ g_action_observer_action_added (GActionObserver    *observer,
     ->action_added (observer, observable, action_name, parameter_type, enabled, state);
 }
 
-/**
+/*
  * g_action_observer_action_enabled_changed:
  * @observer: a #GActionObserver
  * @observable: the source of the event
@@ -103,9 +97,7 @@ g_action_observer_action_added (GActionObserver    *observer,
  *
  * This function should only be called by objects with which the
  * observer has explicitly registered itself to receive events.
- *
- * Since: 2.32
- **/
+ */
 void
 g_action_observer_action_enabled_changed (GActionObserver   *observer,
                                           GActionObservable *observable,
@@ -118,7 +110,7 @@ g_action_observer_action_enabled_changed (GActionObserver   *observer,
     ->action_enabled_changed (observer, observable, action_name, enabled);
 }
 
-/**
+/*
  * g_action_observer_action_state_changed:
  * @observer: a #GActionObserver
  * @observable: the source of the event
@@ -130,9 +122,7 @@ g_action_observer_action_enabled_changed (GActionObserver   *observer,
  *
  * This function should only be called by objects with which the
  * observer has explicitly registered itself to receive events.
- *
- * Since: 2.32
- **/
+ */
 void
 g_action_observer_action_state_changed (GActionObserver   *observer,
                                         GActionObservable *observable,
@@ -145,7 +135,7 @@ g_action_observer_action_state_changed (GActionObserver   *observer,
     ->action_state_changed (observer, observable, action_name, state);
 }
 
-/**
+/*
  * g_action_observer_action_removed:
  * @observer: a #GActionObserver
  * @observable: the source of the event
@@ -156,9 +146,7 @@ g_action_observer_action_state_changed (GActionObserver   *observer,
  *
  * This function should only be called by objects with which the
  * observer has explicitly registered itself to receive events.
- *
- * Since: 2.32
- **/
+ */
 void
 g_action_observer_action_removed (GActionObserver   *observer,
                                   GActionObservable *observable,