mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
ChangeLog src/screen.c: fixed typo in function name.
This commit is contained in:
parent
87f0ba0478
commit
d2eec23c1e
@ -35,7 +35,7 @@
|
|||||||
Set attribute here instead of show_dir().
|
Set attribute here instead of show_dir().
|
||||||
display_mini_info(): check the show_mini_info value before call this.
|
display_mini_info(): check the show_mini_info value before call this.
|
||||||
Move display size of total marked files from here...
|
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.
|
display_mini_info(): removed unused return.
|
||||||
mini_info_separator(): check the show_mini_info value before call this.
|
mini_info_separator(): check the show_mini_info value before call this.
|
||||||
Set attribute independently of HAVE_SLANG. Show total size of marked files.
|
Set attribute independently of HAVE_SLANG. Show total size of marked files.
|
||||||
|
@ -711,7 +711,7 @@ paint_dir (WPanel *panel)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
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;
|
char buffer[BUF_SMALL], b_bytes[BUF_SMALL], *buf;
|
||||||
int cols;
|
int cols;
|
||||||
@ -773,7 +773,7 @@ mini_info_separator (WPanel *panel)
|
|||||||
|
|
||||||
/* Status displays total marked size.
|
/* Status displays total marked size.
|
||||||
* Centered in panel, full format. */
|
* Centered in panel, full format. */
|
||||||
dispaly_total_marked_size (panel, y, -1, FALSE);
|
display_total_marked_size (panel, y, -1, FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -872,7 +872,7 @@ show_dir (WPanel *panel)
|
|||||||
} else {
|
} else {
|
||||||
/* Show total size of marked files
|
/* Show total size of marked files
|
||||||
* In the bottom of panel, display size only. */
|
* 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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user