diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-24 22:04:43 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-24 22:04:43 +0000 |
| commit | 22be74583bcf40fd5e762eb818676aa12f7152c4 (patch) | |
| tree | 06e3fa6378a82a794ede9a70e8525db8bf2eadb2 | |
| parent | d56e90fac8e821f3773372e9342d60de169963b9 (diff) | |
you cant reference yourself as a type
| -rw-r--r-- | openbox/menu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/menu.h b/openbox/menu.h index d7d27c2c..d1a99dcf 100644 --- a/openbox/menu.h +++ b/openbox/menu.h @@ -3,7 +3,7 @@ #include <glib.h> -typedef struct { +typedef struct Menu { char *label; GList *entries; @@ -13,7 +13,7 @@ typedef struct { gboolean shown; gboolean invalid; - Menu *parent; + struct Menu *parent; /* waste o' pointers */ void (*show)( /* some bummu */); |
