ChangeLog src/screen.c: fixed typo in function name.

This commit is contained in:
Andrew Borodin 2009-03-15 10:36:28 +03:00
parent 87f0ba0478
commit d2eec23c1e
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@
Set attribute here instead of show_dir().
display_mini_info(): check the show_mini_info value before call this.
Move display size of total marked files from here...
dispaly_total_marked_size(): ...to this new function.
display_total_marked_size(): ...to this new function.
display_mini_info(): removed unused return.
mini_info_separator(): check the show_mini_info value before call this.
Set attribute independently of HAVE_SLANG. Show total size of marked files.

View File

@ -711,7 +711,7 @@ paint_dir (WPanel *panel)
}
static void
dispaly_total_marked_size (WPanel *panel, int y, int x, gboolean size_only)
display_total_marked_size (WPanel *panel, int y, int x, gboolean size_only)
{
char buffer[BUF_SMALL], b_bytes[BUF_SMALL], *buf;
int cols;
@ -773,7 +773,7 @@ mini_info_separator (WPanel *panel)
/* Status displays total marked size.
* Centered in panel, full format. */
dispaly_total_marked_size (panel, y, -1, FALSE);
display_total_marked_size (panel, y, -1, FALSE);
}
static void
@ -872,7 +872,7 @@ show_dir (WPanel *panel)
} else {
/* Show total size of marked files
* In the bottom of panel, display size only. */
dispaly_total_marked_size (panel, panel->widget.lines - 1, 2, TRUE);
display_total_marked_size (panel, panel->widget.lines - 1, 2, TRUE);
}
}