summaryrefslogtreecommitdiff
path: root/atk
diff options
context:
space:
mode:
authorPadraig O'Briain <padraig.obriain@sun.com>2004-08-13 08:31:03 +0000
committerPadraig O'Briain <padraigo@src.gnome.org>2004-08-13 08:31:03 +0000
commit6c03c7ac83597058b1201c2bde359305f457e3ea (patch)
tree839fc87eeeb7ce0d4b954f72bf4d87dbf0b77532 /atk
parent8a88c42f4e5c6324bf3cc61766ec091e00fd1744 (diff)
downloadatk-6c03c7ac83597058b1201c2bde359305f457e3ea.tar.gz
Fix for bug #149990; patch from Kjartan Maraas.
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.
Diffstat (limited to 'atk')
-rwxr-xr-xatk/atkdocument.c2
-rwxr-xr-xatk/atkeditabletext.c2
-rwxr-xr-xatk/atkhypertext.c2
-rwxr-xr-xatk/atkimage.c2
-rwxr-xr-xatk/atknoopobjectfactory.c2
-rwxr-xr-xatk/atkobject.c2
-rwxr-xr-xatk/atkstreamablecontent.c2
-rwxr-xr-xatk/atktext.c2
-rwxr-xr-xatk/atkvalue.c2
9 files changed, 9 insertions, 9 deletions
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;