mirror of
https://github.com/MidnightCommander/mc
synced 2025-03-03 14:41:34 +03:00
* view.c (display): Changed return type to void.
This commit is contained in:
parent
a095bce5ee
commit
868c55faa6
@ -4,6 +4,7 @@
|
|||||||
* view.c (normal_search): Replaced with normal_search_cmd().
|
* view.c (normal_search): Replaced with normal_search_cmd().
|
||||||
(do_regexp_search): Removed unnecessary type cast.
|
(do_regexp_search): Removed unnecessary type cast.
|
||||||
(do_normal_search): Likewise.
|
(do_normal_search): Likewise.
|
||||||
|
* view.c (display): Changed return type to void.
|
||||||
|
|
||||||
2005-06-27 Roland Illig <roland.illig@gmx.de>
|
2005-06-27 Roland Illig <roland.illig@gmx.de>
|
||||||
|
|
||||||
|
@ -1556,7 +1556,7 @@ view_display_ruler (WView *view)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Displays as much data from view->dpy_topleft as fits on the screen */
|
/* Displays as much data from view->dpy_topleft as fits on the screen */
|
||||||
static offset_type
|
static void
|
||||||
display (WView *view)
|
display (WView *view)
|
||||||
{
|
{
|
||||||
const int left = view_get_left (view);
|
const int left = view_get_left (view);
|
||||||
@ -1789,7 +1789,6 @@ display (WView *view)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
view->dpy_complete = (get_byte (view, from) == -1);
|
view->dpy_complete = (get_byte (view, from) == -1);
|
||||||
return from;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user