aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2005-06-02 13:51:53 +0800
committerMichael Zucci <zucchi@src.gnome.org>2005-06-02 13:51:53 +0800
commit120716582df59a07dd7f83a30f99cd6c0cc4d4d6 (patch)
tree70ff7d80f55eb81ba5bcb16f950dce21146e7597 /shell
parent5c1993b9bace20bec8ff95e69aa3f56588eaa87c (diff)
downloadgsoc2013-evolution-120716582df59a07dd7f83a30f99cd6c0cc4d4d6.tar
gsoc2013-evolution-120716582df59a07dd7f83a30f99cd6c0cc4d4d6.tar.gz
gsoc2013-evolution-120716582df59a07dd7f83a30f99cd6c0cc4d4d6.tar.bz2
gsoc2013-evolution-120716582df59a07dd7f83a30f99cd6c0cc4d4d6.tar.lz
gsoc2013-evolution-120716582df59a07dd7f83a30f99cd6c0cc4d4d6.tar.xz
gsoc2013-evolution-120716582df59a07dd7f83a30f99cd6c0cc4d4d6.tar.zst
gsoc2013-evolution-120716582df59a07dd7f83a30f99cd6c0cc4d4d6.zip
Fix so these are only ever included once.
2005-06-02 Not Zed <NotZed@Ximian.com> * Evolution.*.idl: Fix so these are only ever included once. svn path=/trunk/; revision=29447
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog2
-rw-r--r--shell/Evolution-Component.idl5
-rw-r--r--shell/Evolution-ConfigControl.idl5
-rw-r--r--shell/Evolution-Offline.idl5
-rw-r--r--shell/Evolution-Shell.idl5
-rw-r--r--shell/Evolution.idl5
6 files changed, 27 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 6f7f518807..47c6e222ec 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,7 @@
2005-06-02 Not Zed <NotZed@Ximian.com>
+ * Evolution.*.idl: Fix so these are only ever included once.
+
* evolution-component.c: BonoboObject wrapper for
Evolution::Component interface. Abstract, doesn't implement
methods.
diff --git a/shell/Evolution-Component.idl b/shell/Evolution-Component.idl
index f200680633..defb138ae9 100644
--- a/shell/Evolution-Component.idl
+++ b/shell/Evolution-Component.idl
@@ -8,6 +8,9 @@
* Copyright (C) 2003 Ximian, Inc.
*/
+#ifndef _GNOME_EVOLUTION_COMPONENT_IDL
+#define _GNOME_EVOLUTION_COMPONENT_IDL
+
#include <Bonobo.idl>
module GNOME {
@@ -98,3 +101,5 @@ module Evolution {
};
};
+
+#endif
diff --git a/shell/Evolution-ConfigControl.idl b/shell/Evolution-ConfigControl.idl
index dfe99dd644..901932d209 100644
--- a/shell/Evolution-ConfigControl.idl
+++ b/shell/Evolution-ConfigControl.idl
@@ -8,6 +8,9 @@
* Copyright (C) 2002 Ximian, Inc.
*/
+#ifndef _GNOME_EVOLUTION_CONFIGCONTROL_IDL
+#define _GNOME_EVOLUTION_CONFIGCONTROL_IDL
+
module GNOME {
module Evolution {
interface ConfigControl : Bonobo::Unknown {
@@ -19,3 +22,5 @@ module Evolution {
};
}; /* module Evolution */
}; /* module GNOME */
+
+#endif
diff --git a/shell/Evolution-Offline.idl b/shell/Evolution-Offline.idl
index e896710503..b513e1c05b 100644
--- a/shell/Evolution-Offline.idl
+++ b/shell/Evolution-Offline.idl
@@ -8,6 +8,9 @@
* Copyright (C) 2001 Ximian, Inc.
*/
+#ifndef _GNOME_EVOLUTION_OFFLINE_IDL
+#define _GNOME_EVOLUTION_OFFLINE_IDL
+
#include <Bonobo.idl>
module GNOME {
@@ -51,3 +54,5 @@ interface Offline : Bonobo::Unknown {
};
};
+
+#endif
diff --git a/shell/Evolution-Shell.idl b/shell/Evolution-Shell.idl
index f5e2d9b32a..c9d075918d 100644
--- a/shell/Evolution-Shell.idl
+++ b/shell/Evolution-Shell.idl
@@ -8,6 +8,9 @@
* Copyright (C) 2000, 2001 Ximian, Inc.
*/
+#ifndef _GNOME_EVOLUTION_SHELL_IDL
+#define _GNOME_EVOLUTION_SHELL_IDL
+
#include <Bonobo.idl>
module GNOME {
@@ -57,3 +60,5 @@ module Evolution {
};
};
};
+
+#endif
diff --git a/shell/Evolution.idl b/shell/Evolution.idl
index b0d920454a..c7394f98cd 100644
--- a/shell/Evolution.idl
+++ b/shell/Evolution.idl
@@ -8,9 +8,14 @@
* Copyright (C) 2000, 2001 Ximian, Inc.
*/
+#ifndef _GNOME_EVOLUTION_IDL
+#define _GNOME_EVOLUTION_IDL
+
#include <Bonobo.idl>
#include <Evolution-Component.idl>
#include <Evolution-ConfigControl.idl>
#include <Evolution-Offline.idl>
#include <Evolution-Shell.idl>
+
+#endif