[atkmm] Add #includes needed with the latest glibmm.



commit 71a5bf3ba74afee9a5f86c96483afe4055a8c9e6
Author: Murray Cumming <murrayc murrayc com>
Date:   Tue Oct 25 11:39:35 2011 +0200

    Add #includes needed with the latest glibmm.
    
    	* atk/src/action.hg:
    	* atk/src/component.hg:
    	* atk/src/document.hg:
    	* atk/src/object.hg:
    	* atk/src/relation.hg:
    	* atk/src/selection.hg:
    	* atk/src/stateset.hg:
    	* atk/src/streamablecontent.hg:
    	* atk/src/table.hg:
    	* atk/src/text.hg:
    	* atk/src/value.hg: Add individual includes now that gmmproc does not
    	add #include glibmm.h at the top of every generated header.

 ChangeLog                    |   17 +++++++++++++++++
 atk/src/action.hg            |    2 ++
 atk/src/component.hg         |    2 ++
 atk/src/document.hg          |    2 ++
 atk/src/object.hg            |    1 +
 atk/src/relation.hg          |    2 ++
 atk/src/selection.hg         |    2 ++
 atk/src/stateset.hg          |    3 +++
 atk/src/streamablecontent.hg |    3 +++
 atk/src/table.hg             |    3 +++
 atk/src/text.hg              |    1 +
 atk/src/value.hg             |    2 ++
 12 files changed, 40 insertions(+), 0 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 2531eb4..66363b4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2011-10-25  Murray Cumming  <murrayc murrayc com>
+
+	Add #includes needed with the latest glibmm.
+
+	* atk/src/action.hg:
+	* atk/src/component.hg:
+	* atk/src/document.hg:
+	* atk/src/object.hg:
+	* atk/src/relation.hg:
+	* atk/src/selection.hg:
+	* atk/src/stateset.hg:
+	* atk/src/streamablecontent.hg:
+	* atk/src/table.hg:
+	* atk/src/text.hg:
+	* atk/src/value.hg: Add individual includes now that gmmproc does not 
+	add #include glibmm.h at the top of every generated header.
+
 2.22.5:
 
 2011-03-30  Murray Cumming  <murrayc murrayc com>
diff --git a/atk/src/action.hg b/atk/src/action.hg
index e692f64..fa5d692 100644
--- a/atk/src/action.hg
+++ b/atk/src/action.hg
@@ -20,6 +20,8 @@
 _DEFS(atkmm,atk)
 _PINCLUDE(glibmm/private/interface_p.h)
 
+#include <glibmm/interface.h>
+
 #ifndef DOXYGEN_SHOULD_SKIP_THIS
 extern "C" { typedef struct _AtkActionIface AtkActionIface; }
 #endif
diff --git a/atk/src/component.hg b/atk/src/component.hg
index 2755d18..4b37d1b 100644
--- a/atk/src/component.hg
+++ b/atk/src/component.hg
@@ -20,6 +20,8 @@
 _DEFS(atkmm,atk)
 _PINCLUDE(atk/atkcomponent.h)
 
+#include <glibmm/interface.h>
+#include <glibmm/value.h>
 
 #ifndef DOXYGEN_SHOULD_SKIP_THIS
 extern "C"
diff --git a/atk/src/document.hg b/atk/src/document.hg
index f3a2959..1e51a64 100644
--- a/atk/src/document.hg
+++ b/atk/src/document.hg
@@ -21,6 +21,8 @@
 _DEFS(atkmm,atk)
 _PINCLUDE(glibmm/private/object_p.h)
 
+#include <glibmm/interface.h>
+
 #ifndef DOXYGEN_SHOULD_SKIP_THIS
 extern "C"
 {
diff --git a/atk/src/object.hg b/atk/src/object.hg
index b008a1f..50f87d7 100644
--- a/atk/src/object.hg
+++ b/atk/src/object.hg
@@ -20,6 +20,7 @@
 _DEFS(atkmm,atk)
 _PINCLUDE(glibmm/private/object_p.h)
 
+#include <glibmm/object.h>
 #include <atkmm/component.h>
 #include <atkmm/relation.h>
 
diff --git a/atk/src/relation.hg b/atk/src/relation.hg
index 0205963..1337fc2 100644
--- a/atk/src/relation.hg
+++ b/atk/src/relation.hg
@@ -21,6 +21,8 @@
 _DEFS(atkmm,atk)
 _PINCLUDE(glibmm/private/object_p.h)
 
+#include <glibmm/object.h>
+#include <glibmm/arrayhandle.h>
 
 namespace Atk
 {
diff --git a/atk/src/selection.hg b/atk/src/selection.hg
index 9e26e5d..49589ea 100644
--- a/atk/src/selection.hg
+++ b/atk/src/selection.hg
@@ -20,6 +20,8 @@
 _DEFS(atkmm,atk)
 _PINCLUDE(atk/atkobject.h)
 
+#include <glibmm/interface.h>
+
 #ifndef DOXYGEN_SHOULD_SKIP_THIS
 extern "C"
 {
diff --git a/atk/src/stateset.hg b/atk/src/stateset.hg
index cb2c17d..b22578c 100644
--- a/atk/src/stateset.hg
+++ b/atk/src/stateset.hg
@@ -20,6 +20,9 @@
 _DEFS(atkmm,atk)
 _PINCLUDE(glibmm/private/object_p.h)
 
+#include <glibmm/object.h>
+#include <glibmm/value.h>
+#include <glibmm/arrayhandle.h>
 
 namespace Atk
 {
diff --git a/atk/src/streamablecontent.hg b/atk/src/streamablecontent.hg
index 05f8c72..b0ede91 100644
--- a/atk/src/streamablecontent.hg
+++ b/atk/src/streamablecontent.hg
@@ -21,6 +21,9 @@
 _DEFS(atkmm,atk)
 _PINCLUDE(glibmm/private/object_p.h)
 
+#include <glibmm/interface.h>
+#include <glibmm/iochannel.h>
+
 #ifndef DOXYGEN_SHOULD_SKIP_THIS
 extern "C"
 {
diff --git a/atk/src/table.hg b/atk/src/table.hg
index 1e30361..07e607f 100644
--- a/atk/src/table.hg
+++ b/atk/src/table.hg
@@ -20,6 +20,9 @@
 _DEFS(atkmm,atk)
 _PINCLUDE(atk/atkobject.h)
 
+#include <glibmm/interface.h>
+#include <glibmm/arrayhandle.h>
+
 #ifndef DOXYGEN_SHOULD_SKIP_THIS
 extern "C"
 {
diff --git a/atk/src/text.hg b/atk/src/text.hg
index 7a81d59..08cb54b 100644
--- a/atk/src/text.hg
+++ b/atk/src/text.hg
@@ -20,6 +20,7 @@
 _DEFS(atkmm,atk)
 
 #include <atkmm/component.h> /* for Atk::CoordType */
+#include <glibmm/slisthandle.h>
 #include <atk/atktext.h>
 
 
diff --git a/atk/src/value.hg b/atk/src/value.hg
index c8e4080..7592e53 100644
--- a/atk/src/value.hg
+++ b/atk/src/value.hg
@@ -19,6 +19,8 @@
 
 _DEFS(atkmm,atk)
 
+#include <glibmm/interface.h>
+
 #ifndef DOXYGEN_SHOULD_SKIP_THIS
 extern "C"
 {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]