aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/test.c
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1999-11-12 16:41:20 +0800
committerArturo Espinosa <unammx@src.gnome.org>1999-11-12 16:41:20 +0800
commit43fd06f8ec06257cbd135b03c5e203dfcd134fd4 (patch)
tree2053caff6b2865f07df3fd1c7793024e79686fae /widgets/table/test.c
parent15b4b77c8ae5dabda4e3c4eb30e4345d5effdfb1 (diff)
downloadgsoc2013-evolution-43fd06f8ec06257cbd135b03c5e203dfcd134fd4.tar
gsoc2013-evolution-43fd06f8ec06257cbd135b03c5e203dfcd134fd4.tar.gz
gsoc2013-evolution-43fd06f8ec06257cbd135b03c5e203dfcd134fd4.tar.bz2
gsoc2013-evolution-43fd06f8ec06257cbd135b03c5e203dfcd134fd4.tar.lz
gsoc2013-evolution-43fd06f8ec06257cbd135b03c5e203dfcd134fd4.tar.xz
gsoc2013-evolution-43fd06f8ec06257cbd135b03c5e203dfcd134fd4.tar.zst
gsoc2013-evolution-43fd06f8ec06257cbd135b03c5e203dfcd134fd4.zip
More table work
svn path=/trunk/; revision=1383
Diffstat (limited to 'widgets/table/test.c')
-rw-r--r--widgets/table/test.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/widgets/table/test.c b/widgets/table/test.c
new file mode 100644
index 0000000000..0eece34467
--- /dev/null
+++ b/widgets/table/test.c
@@ -0,0 +1,17 @@
+#include <config.h>
+#include "e-table-simple.h"
+
+struct {
+ char *str;
+ int val;
+} data [] = {
+ { "Miguel", 10 },
+ { "Nat", 20 },
+ { NULL, 0 },
+};
+
+main ()
+{
+
+}
+