summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPadraig O'Briain <padraigo@src.gnome.org>2002-02-15 09:51:23 +0000
committerPadraig O'Briain <padraigo@src.gnome.org>2002-02-15 09:51:23 +0000
commit532a7888d6cfdf2c9bc940f44183f7abd1179e20 (patch)
tree66eb50c2bc83d8e2347f7caa33f6600aa81a1305
parent876318cdd5b886314ec495b746d0f171018c218c (diff)
downloadatk-532a7888d6cfdf2c9bc940f44183f7abd1179e20.tar.gz
Guard atk.h with ifndef __ATK_H__ (#71405 reported by terra@diku.dk
* atk/atk.h: Guard atk.h with ifndef __ATK_H__ (#71405 reported by terra@diku.dk (Morten Welinder))
-rw-r--r--ChangeLog6
-rwxr-xr-xatk/atk.h5
2 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 946e473..850057c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-02-15 Padraig O'Briain <padraig.obriain@sun.com>
+
+ * atk/atk.h:
+ Guard atk.h with ifndef __ATK_H__
+ (#71405 reported by terra@diku.dk (Morten Welinder))
+
2002-02-13 Padraig O'Briain <padraig.obriain@sun.com>
* atk/atkaction.h atk/atkcomponent.h atk/atkeditabletext.h
diff --git a/atk/atk.h b/atk/atk.h
index 858072e..fb57fdc 100755
--- a/atk/atk.h
+++ b/atk/atk.h
@@ -17,6 +17,9 @@
* Boston, MA 02111-1307, USA.
*/
+#ifndef __ATK_H__
+#define __ATK_H__
+
#include <atk/atkobject.h>
#include <atk/atkaction.h>
#include <atk/atkcomponent.h>
@@ -38,3 +41,5 @@
#include <atk/atktext.h>
#include <atk/atkutil.h>
#include <atk/atkvalue.h>
+
+#endif /* __ATK_H__ */