diff options
author | Josh Rickmar <jrick@devio.us> | 2012-07-09 15:44:22 -0400 |
---|---|---|
committer | Josh Rickmar <jrick@devio.us> | 2012-07-09 15:44:22 -0400 |
commit | af187aeb97e6d77ea4a044330b1205b12e59b2e6 (patch) | |
tree | 07fce0548759daebce9040bc6a8f3d4fb4d7157f | |
parent | 97903a8151a57e7448db9c439b77f3dd49fd92cd (diff) | |
download | xombrero-af187aeb97e6d77ea4a044330b1205b12e59b2e6.tar.gz |
More #ifdef nonsense so this compiles with older webkits.
-rw-r--r-- | xombrero.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xombrero.h b/xombrero.h index 9971804..4dad29b 100644 --- a/xombrero.h +++ b/xombrero.h @@ -287,8 +287,10 @@ struct tab { GtkWidget *inspector_view; /* focused text entry */ +#if WEBKIT_CHECK_VERSION(1, 5, 0) WebKitDOMElement *active; char *active_text; +#endif }; TAILQ_HEAD(tab_list, tab); |