From 6c03c7ac83597058b1201c2bde359305f457e3ea Mon Sep 17 00:00:00 2001 From: Padraig O'Briain Date: Fri, 13 Aug 2004 08:31:03 +0000 Subject: [PATCH] Fix for bug #149990; patch from Kjartan Maraas. 2004-08-13 Padraig O'Briain * *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 | 9 ++++++++- atk/atkdocument.c | 2 +- atk/atkeditabletext.c | 2 +- atk/atkhypertext.c | 2 +- atk/atkimage.c | 2 +- atk/atknoopobjectfactory.c | 2 +- atk/atkobject.c | 2 +- atk/atkstreamablecontent.c | 2 +- atk/atktext.c | 2 +- atk/atkvalue.c | 2 +- 10 files changed, 17 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 024c748..b602094 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ -2004-08-12 Kjartan Maraas +2004-08-13 Padraig O'Briain + + * *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 + * configure.in: Added nb to ALL_LINGUAS. 2004-08-09 Ankit Patel diff --git a/atk/atkdocument.c b/atk/atkdocument.c index 564a403..cab27bb 100755 --- a/atk/atkdocument.c +++ b/atk/atkdocument.c @@ -20,7 +20,7 @@ #include "atkdocument.h" GType -atk_document_get_type () +atk_document_get_type (void) { static GType type = 0; diff --git a/atk/atkeditabletext.c b/atk/atkeditabletext.c index 92360c1..6ff8a97 100755 --- a/atk/atkeditabletext.c +++ b/atk/atkeditabletext.c @@ -21,7 +21,7 @@ GType -atk_editable_text_get_type () +atk_editable_text_get_type (void) { static GType type = 0; diff --git a/atk/atkhypertext.c b/atk/atkhypertext.c index 6da5030..f216d34 100755 --- a/atk/atkhypertext.c +++ b/atk/atkhypertext.c @@ -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; diff --git a/atk/atkimage.c b/atk/atkimage.c index 1abf5b8..95b2686 100755 --- a/atk/atkimage.c +++ b/atk/atkimage.c @@ -20,7 +20,7 @@ #include "atkimage.h" GType -atk_image_get_type () +atk_image_get_type (void) { static GType type = 0; diff --git a/atk/atknoopobjectfactory.c b/atk/atknoopobjectfactory.c index 0d0d6f6..951332f 100755 --- a/atk/atknoopobjectfactory.c +++ b/atk/atknoopobjectfactory.c @@ -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; diff --git a/atk/atkobject.c b/atk/atkobject.c index 2ec044c..2ca6636 100755 --- a/atk/atkobject.c +++ b/atk/atkobject.c @@ -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); diff --git a/atk/atkstreamablecontent.c b/atk/atkstreamablecontent.c index de8b429..6b56456 100755 --- a/atk/atkstreamablecontent.c +++ b/atk/atkstreamablecontent.c @@ -20,7 +20,7 @@ #include "atkstreamablecontent.h" GType -atk_streamable_content_get_type () +atk_streamable_content_get_type (void) { static GType type = 0; diff --git a/atk/atktext.c b/atk/atktext.c index b067925..ccc582d 100755 --- a/atk/atktext.c +++ b/atk/atktext.c @@ -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; diff --git a/atk/atkvalue.c b/atk/atkvalue.c index 22d1b6d..2eaa679 100755 --- a/atk/atkvalue.c +++ b/atk/atkvalue.c @@ -21,7 +21,7 @@ #include "atkvalue.h" GType -atk_value_get_type () +atk_value_get_type (void) { static GType type = 0; -- 2.7.4