]> Pileus Git - ~andy/gtk/blobdiff - gtk/gactionobservable.c
a11y: Emit text-changed signals when the text-buffer changes
[~andy/gtk] / gtk / gactionobservable.c
index 11ed63ba9bb29d559ee188edbad276573136e63b..17049b7a8219fc8bcaf5d864f994f01b27ac921f 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>
  */
 
 G_DEFINE_INTERFACE (GActionObservable, g_action_observable, G_TYPE_OBJECT)
 
-/**
+/*
  * SECTION:gactionobserable
  * @short_description: an interface implemented by objects that report
  *                     changes to actions
- *
- * Since: 2.32
  */
 
 void
@@ -38,7 +34,7 @@ g_action_observable_default_init (GActionObservableInterface *iface)
 {
 }
 
-/**
+/*
  * g_action_observable_register_observer:
  * @observable: a #GActionObservable
  * @action_name: the name of the action
@@ -46,9 +42,7 @@ g_action_observable_default_init (GActionObservableInterface *iface)
  *
  * Registers @observer as being interested in changes to @action_name on
  * @observable.
- *
- * Since: 2.32
- **/
+ */
 void
 g_action_observable_register_observer (GActionObservable *observable,
                                        const gchar       *action_name,
@@ -60,7 +54,7 @@ g_action_observable_register_observer (GActionObservable *observable,
     ->register_observer (observable, action_name, observer);
 }
 
-/**
+/*
  * g_action_observable_unregister_observer:
  * @observable: a #GActionObservable
  * @action_name: the name of the action
@@ -71,9 +65,7 @@ g_action_observable_register_observer (GActionObservable *observable,
  *
  * If the observer was registered multiple times, it must be
  * unregistered an equal number of times.
- *
- * Since: 2.32
- **/
+ */
 void
 g_action_observable_unregister_observer (GActionObservable *observable,
                                          const gchar       *action_name,