diff options
author | Ted Gould <ted@canonical.com> | 2009-05-25 14:17:44 +0200 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-05-25 14:17:44 +0200 |
commit | c6e13ca433f0e8538a60a80cee3ce1a359b88bd6 (patch) | |
tree | ab4758d112ef1ddb86ab0590116f45b91ab956e3 | |
parent | b26bb869e0bc037533c62ae77907b5368fdee9a3 (diff) | |
download | libdbusmenu-c6e13ca433f0e8538a60a80cee3ce1a359b88bd6.tar.gz libdbusmenu-c6e13ca433f0e8538a60a80cee3ce1a359b88bd6.tar.bz2 libdbusmenu-c6e13ca433f0e8538a60a80cee3ce1a359b88bd6.zip |
Switching to the right header and updating the properties more.
-rw-r--r-- | tests/test-gtk-label-server.c | 2 | ||||
-rw-r--r-- | tests/test-gtk-label.h | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/tests/test-gtk-label-server.c b/tests/test-gtk-label-server.c index 0e395d4..426daa2 100644 --- a/tests/test-gtk-label-server.c +++ b/tests/test-gtk-label-server.c @@ -8,7 +8,7 @@ #include <libdbusmenu-glib/menuitem.h> #include <libdbusmenu-glib/server.h> -#include "test-glib-properties.h" +#include "test-gtk-label.h" static void set_props (DbusmenuMenuitem * mi, gchar ** props) diff --git a/tests/test-gtk-label.h b/tests/test-gtk-label.h index ca98700..e63ac44 100644 --- a/tests/test-gtk-label.h +++ b/tests/test-gtk-label.h @@ -9,6 +9,7 @@ struct _proplayout_t { }; gchar * props1[] = {"label", "value1", NULL}; +gchar * props2[] = {"label", "value1", NULL}; gchar * props3[] = {"label", "And a property name that is really long should have a value that is really long, because well, that's an important part of the yin and yang of software testing.", NULL}; @@ -65,9 +66,9 @@ proplayout_t submenu_4_0[] = { }; proplayout_t layouts[] = { - {id: 1, properties: props1, submenu: NULL}, - {id: 10, properties: props2, submenu: NULL}, - {id: 20, properties: props3, submenu: NULL}, + {id: 1, properties: props1, submenu: submenu_4_3}, + {id: 10, properties: props2, submenu: submenu_4_2}, + {id: 20, properties: props3, submenu: submenu_4_1}, {id: 100, properties: props2, submenu: submenu_4_0}, {id: 0, properties: NULL, submenu: NULL} }; |