aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cssparser.cc2
-rw-r--r--src/html.cc2
-rw-r--r--src/menu.cc6
-rw-r--r--src/ui.cc4
-rw-r--r--src/uicmd.cc2
5 files changed, 8 insertions, 8 deletions
diff --git a/src/cssparser.cc b/src/cssparser.cc
index aa4cea56..1075ef63 100644
--- a/src/cssparser.cc
+++ b/src/cssparser.cc
@@ -1522,7 +1522,7 @@ const char * CssParser::propertyNameString(CssPropertyName name)
{
return Css_property_info[name].symbol;
}
-
+
void CssParser::ignoreBlock()
{
int depth = 0;
diff --git a/src/html.cc b/src/html.cc
index ede391a3..c3235209 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -2880,7 +2880,7 @@ static void Html_tag_open_meta(DilloHtml *html, const char *tag, int tagsize)
if (a_Url_cmp(html->base_url, new_url) == 0) {
/* redirection loop, or empty url string: ignore */
- BUG_MSG("META refresh: %s\n",
+ BUG_MSG("META refresh: %s\n",
*mr_url ? "redirection loop" : "no target URL");
} else if (delay == 0) {
/* zero-delay redirection */
diff --git a/src/menu.cc b/src/menu.cc
index fa725931..d054a917 100644
--- a/src/menu.cc
+++ b/src/menu.cc
@@ -505,8 +505,8 @@ void a_Menu_bugmeter_popup(BrowserWindow *bw, const DilloUrl *url)
{"Validate URL with WDG", 0, Menu_bugmeter_validate_wdg_cb, 0,
FL_MENU_DIVIDER,0,0,0,0},
{"About bug meter", 0, Menu_bugmeter_about_cb,0,0,0,0,0,0},
- {0,0,0,0,0,0,0,0,0}
- };
+ {0,0,0,0,0,0,0,0,0}
+ };
popup_x = Fl::event_x();
popup_y = Fl::event_y();
@@ -620,7 +620,7 @@ void a_Menu_tools_popup(BrowserWindow *bw, void *v_wid)
{"Use remote CSS", 0, Menu_remote_css_cb, 0, FL_MENU_TOGGLE,0,0,0,0},
{"Use embedded CSS", 0, Menu_embedded_css_cb, 0,
FL_MENU_TOGGLE|FL_MENU_DIVIDER,0,0,0,0},
- {"Load images", 0, Menu_imgload_toggle_cb, 0,
+ {"Load images", 0, Menu_imgload_toggle_cb, 0,
FL_MENU_TOGGLE|FL_MENU_DIVIDER,0,0,0,0},
{"Panel size", 0, 0, (void*)"Submenu1", FL_SUBMENU,0,0,0,0},
{"tiny", 0,Menu_panel_change_cb,(void*)0,FL_MENU_RADIO,0,0,0,0},
diff --git a/src/ui.cc b/src/ui.cc
index 5ca58e8e..a8a802fb 100644
--- a/src/ui.cc
+++ b/src/ui.cc
@@ -707,7 +707,7 @@ UI::UI(int x, int y, int ui_w, int ui_h, const char* label, const UI *cur_ui) :
// Control panel
TopGroup->begin();
make_panel(ui_w);
-
+
// Render area
int main_h = ui_h - (mh+(LocBar?lh:0)+nh+fh+sh);
Main = new Fl_Group(0,0,0,main_h,"Welcome...");
@@ -721,7 +721,7 @@ UI::UI(int x, int y, int ui_w, int ui_h, const char* label, const UI *cur_ui) :
TopGroup->add(Main);
TopGroup->resizable(Main);
MainIdx = TopGroup->find(Main);
-
+
// Find text bar
FindBarSpace = 1;
FindBar = new Findbar(ui_w, fh);
diff --git a/src/uicmd.cc b/src/uicmd.cc
index 02747e48..415f0d3b 100644
--- a/src/uicmd.cc
+++ b/src/uicmd.cc
@@ -305,7 +305,7 @@ void CustTabs::set_tab_label(UI *ui, const char *label)
{
char title[128];
int idx = get_btn_idx(ui);
-
+
if (idx > 0) {
// Make a label for this tab
size_t tab_chars = 7, label_len = strlen(label);