summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/render/box.h b/render/box.h
index b67d6e7b1..4faaef19a 100644
--- a/render/box.h
+++ b/render/box.h
@@ -81,9 +81,6 @@ struct gui_gadget {
} data;
};
-/* state of a plugin handling this box, platform dependent */
-struct plugin_state;
-
/* parameters for <object> and related elements */
struct object_params {
char* data;
@@ -92,10 +89,6 @@ struct object_params {
char* codebase;
char* classid;
char* paramds; /* very likely to change */
- unsigned int* width;
- unsigned int* height;
- /* not a parameter, but stored here for convenience */
- struct plugin_state *plugin_state;
};
struct box {
@@ -123,6 +116,7 @@ struct box {
struct gui_gadget* gadget;
struct content* object; /* usually an image */
struct object_params *object_params;
+ void *object_state; /* state of any object */
};
struct form