summaryrefslogtreecommitdiffstats
path: root/openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkhashtable.h.diff
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-07-21 10:10:31 +0000
committerRichard Purdie <richard@openedhand.com>2006-07-21 10:10:31 +0000
commitb2f192faabe412adce79534e22efe9fb69ee40e2 (patch)
tree7076c49d4286f8a1733650bd8fbc7161af200d57 /openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkhashtable.h.diff
parent2cf0eadf9f730027833af802d7e6c90b44248f80 (diff)
downloadpoky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkhashtable.h.diff')
-rw-r--r--openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkhashtable.h.diff64
1 files changed, 0 insertions, 64 deletions
diff --git a/openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkhashtable.h.diff b/openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkhashtable.h.diff
deleted file mode 100644
index 733d68c35a..0000000000
--- a/openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkhashtable.h.diff
+++ /dev/null
@@ -1,64 +0,0 @@
1--- gtk+-2.6.4/gtk/gtkhashtable.h 1970-01-01 02:00:00.000000000 +0200
2+++ gtk+-2.6.4/gtk/gtkhashtable.h 2005-04-06 16:19:36.606973256 +0300
3@@ -0,0 +1,61 @@
4+/* GTK - The GIMP Toolkit
5+ * Copyright (C) 2005 Nokia
6+ * Author: Jorn Baayen <jbaayen@gnome.org>
7+ *
8+ * This library is free software; you can redistribute it and/or
9+ * modify it under the terms of the GNU Lesser General Public
10+ * License as published by the Free Software Foundation; either
11+ * version 2 of the License, or (at your option) any later version.
12+ *
13+ * This library is distributed in the hope that it will be useful,
14+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16+ * Lesser General Public License for more details.
17+ *
18+ * You should have received a copy of the GNU Lesser General Public
19+ * License along with this library; if not, write to the
20+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21+ * Boston, MA 02111-1307, USA.
22+ */
23+
24+#ifndef __GTK_HASH_TABLE_H__
25+#define __GTK_HASH_TABLE_H__
26+
27+#include <glib-object.h>
28+
29+#ifdef __cplusplus
30+extern "C" {
31+#endif /* __cplusplus */
32+
33+typedef struct _GtkHashTable GtkHashTable;
34+typedef struct _GtkHashTableClass GtkHashTableClass;
35+
36+#define GTK_TYPE_HASH_TABLE (_gtk_hash_table_get_type ())
37+#define GTK_HASH_TABLE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GTK_TYPE_HASH_TABLE, GtkHashTable))
38+#define GTK_HASH_TABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_HASH_TABLE, GtkHashTableClass))
39+#define GTK_IS_HASH_TABLE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GTK_TYPE_HASH_TABLE))
40+#define GTK_IS_HASH_TABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_HASH_TABLE))
41+#define GTK_HASH_TABLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_HASH_TABLE, GtkHashTableClass))
42+
43+struct _GtkHashTable
44+{
45+ GObject parent_instance;
46+
47+ GHashTable *hash;
48+};
49+
50+struct _GtkHashTableClass
51+{
52+ GObjectClass parent_class;
53+};
54+
55+GType _gtk_hash_table_get_type (void) G_GNUC_CONST;
56+GtkHashTable* _gtk_hash_table_new (void);
57+
58+#ifdef __cplusplus
59+}
60+#endif /* __cplusplus */
61+
62+#endif /* __GTK_HASH_TABLE_H__ */
63+
64+