diff options
author | p37sitdu, corvid <devnull@localhost> | 2013-01-12 20:13:36 +0000 |
---|---|---|
committer | p37sitdu, corvid <devnull@localhost> | 2013-01-12 20:13:36 +0000 |
commit | 0f0e7cc54aecab1647bdcd222c84d17275b92313 (patch) | |
tree | 225d4a6128cd2ddbc1f762b0355c986f12c13730 /src/bw.h | |
parent | 69666a2dafc8a00e5029f4b671ed94d5be38e109 (diff) |
clean up struct typedefs
Diffstat (limited to 'src/bw.h')
-rw-r--r-- | src/bw.h | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -11,12 +11,8 @@ #define BW_Force (4) /* Stop connection too */ -typedef struct _BrowserWindow BrowserWindow; - - /* browser_window contains the specific data for a single window */ -struct _BrowserWindow -{ +typedef struct { /* Pointer to the UI object this bw belongs to */ void *ui; @@ -61,7 +57,7 @@ struct _BrowserWindow /* HTML-bugs detected at parse time */ int num_page_bugs; Dstr *page_bugs; -}; +} BrowserWindow; #ifdef __cplusplus |