diff options
author | corvid <corvid@lavabit.com> | 2009-05-31 04:31:38 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-05-31 04:31:38 +0000 |
commit | b3ff367d8928bcddb2eec544aff2bef10e5dc54c (patch) | |
tree | 0ba404a7586ee3dbcdfbf799d7c1f3310fdacaff /src | |
parent | 0524d6afd9ce024027c302db3b3cd42738b0260f (diff) |
line length
Diffstat (limited to 'src')
-rw-r--r-- | src/form.cc | 2 | ||||
-rw-r--r-- | src/uicmd.cc | 3 | ||||
-rw-r--r-- | src/uicmd.hh | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/src/form.cc b/src/form.cc index 452b524e..a97f9ea4 100644 --- a/src/form.cc +++ b/src/form.cc @@ -199,7 +199,7 @@ DilloHtmlForm *a_Html_form_new (DilloHtml *html, DilloHtmlMethod method, DilloHtmlEnc content_type, const char *charset, bool enabled) { - return new DilloHtmlForm (html, method, action, content_type, charset, enabled); + return new DilloHtmlForm (html, method,action,content_type,charset,enabled); } void a_Html_form_delete (DilloHtmlForm *form) diff --git a/src/uicmd.cc b/src/uicmd.cc index e3465e92..886a2a0b 100644 --- a/src/uicmd.cc +++ b/src/uicmd.cc @@ -389,7 +389,8 @@ void a_UIcmd_send_event_to_tabs_by_wid(int e, void *v_wid) * Create a new UI and its associated BrowserWindow data structure. * Use style from v_ui. If non-NULL it must be of type UI*. */ -BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh, uint32_t xid, const void *vbw) +BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh, uint32_t xid, + const void *vbw) { BrowserWindow *old_bw = (BrowserWindow*)vbw; BrowserWindow *new_bw = NULL; diff --git a/src/uicmd.hh b/src/uicmd.hh index 282f1b8b..cdf18ef4 100644 --- a/src/uicmd.hh +++ b/src/uicmd.hh @@ -8,7 +8,8 @@ extern "C" { #endif /* __cplusplus */ -BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh, uint32_t xid, const void *v_bw); +BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh, uint32_t xid, + const void *v_bw); BrowserWindow *a_UIcmd_get_bw_by_widget(void *v_wid); void a_UIcmd_send_event_to_tabs_by_wid(int e, void *v_wid); void a_UIcmd_open_urlstr(void *vbw, const char *urlstr); |