Fix for bug #149990; patch from Kjartan Maraas.
authorPadraig O'Briain <padraig.obriain@sun.com>
Fri, 13 Aug 2004 08:31:03 +0000 (08:31 +0000)
committerPadraig O'Briain <padraigo@src.gnome.org>
Fri, 13 Aug 2004 08:31:03 +0000 (08:31 +0000)
2004-08-13  Padraig O'Briain  <padraig.obriain@sun.com>

* *atk/atkdocument.c atk/atkeditabletext.c atk/atkhypertext.c
atk/atkimage.c atk/atknoopobjectfactory.c atkobject.c
atk/atkstreamablecontent.c atk/atktext.c attk/atkvalue.c:
Fix for bug #149990; patch from Kjartan Maraas.

ChangeLog
atk/atkdocument.c
atk/atkeditabletext.c
atk/atkhypertext.c
atk/atkimage.c
atk/atknoopobjectfactory.c
atk/atkobject.c
atk/atkstreamablecontent.c
atk/atktext.c
atk/atkvalue.c

index 024c748..b602094 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
-2004-08-12  Kjartan Maraas  <kmaraas@gnome.org>
+2004-08-13  Padraig O'Briain  <padraig.obriain@sun.com>
+
+       * *atk/atkdocument.c atk/atkeditabletext.c atk/atkhypertext.c
+       atk/atkimage.c atk/atknoopobjectfactory.c atkobject.c 
+       atk/atkstreamablecontent.c atk/atktext.c attk/atkvalue.c:
+       Fix for bug #149990; patch from Kjartan Maraas.
 
+2004-08-12  Kjartan Maraas  <kmaraas@gnome.org>
        * configure.in: Added nb to ALL_LINGUAS.
 
 2004-08-09  Ankit Patel <ankit@redhat.com>
index 564a403..cab27bb 100755 (executable)
@@ -20,7 +20,7 @@
 #include "atkdocument.h"
 
 GType
-atk_document_get_type ()
+atk_document_get_type (void)
 {
   static GType type = 0;
 
index 92360c1..6ff8a97 100755 (executable)
@@ -21,7 +21,7 @@
 
 
 GType
-atk_editable_text_get_type ()
+atk_editable_text_get_type (void)
 {
   static GType type = 0;
 
index 6da5030..f216d34 100755 (executable)
@@ -30,7 +30,7 @@ static guint atk_hypertext_signals[LAST_SIGNAL] = { 0 };
 
 
 GType
-atk_hypertext_get_type ()
+atk_hypertext_get_type (void)
 {
   static GType type = 0;
 
index 1abf5b8..95b2686 100755 (executable)
@@ -20,7 +20,7 @@
 #include "atkimage.h"
 
 GType
-atk_image_get_type ()
+atk_image_get_type (void)
 {
   static GType type = 0;
 
index 0d0d6f6..951332f 100755 (executable)
@@ -78,7 +78,7 @@ atk_no_op_object_factory_class_init (AtkNoOpObjectFactoryClass *klass)
  * Returns: an instance of an #AtkObjectFactory
  **/
 AtkObjectFactory* 
-atk_no_op_object_factory_new ()
+atk_no_op_object_factory_new (void)
 {
   GObject *factory;
 
index 2ec044c..2ca6636 100755 (executable)
@@ -1241,7 +1241,7 @@ static void
 atk_object_notify (GObject     *obj,
                    GParamSpec  *pspec)
 {
-  AtkPropertyValues values = { 0, };
+  AtkPropertyValues values = { NULL, };
 
   g_value_init (&values.new_value, pspec->value_type);
   g_object_get_property (obj, pspec->name, &values.new_value);
index de8b429..6b56456 100755 (executable)
@@ -20,7 +20,7 @@
 #include "atkstreamablecontent.h"
 
 GType
-atk_streamable_content_get_type ()
+atk_streamable_content_get_type (void)
 {
   static GType type = 0;
 
index b067925..ccc582d 100755 (executable)
@@ -81,7 +81,7 @@ static AtkTextRange** atk_text_real_get_bounded_ranges (AtkText          *text,
 static guint atk_text_signals[LAST_SIGNAL] = { 0 };
 
 GType
-atk_text_get_type ()
+atk_text_get_type (void)
 {
   static GType type = 0;
 
index 22d1b6d..2eaa679 100755 (executable)
@@ -21,7 +21,7 @@
 #include "atkvalue.h"
 
 GType
-atk_value_get_type ()
+atk_value_get_type (void)
 {
   static GType type = 0;