mirror of https://github.com/MidnightCommander/mc
* gmcd.c (gnome_filter_cmd): Set default regex filter to "^.*$".
Don't translate it. (set_cursor_busy): Warning fix.
This commit is contained in:
parent
4018a4bb6d
commit
28da0eda1f
|
@ -1,3 +1,9 @@
|
|||
2001-06-04 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* gmcd.c (gnome_filter_cmd): Set default regex filter to "^.*$".
|
||||
Don't translate it.
|
||||
(set_cursor_busy): Warning fix.
|
||||
|
||||
2001-06-02 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* Makefile.in: Don't use hotlist.o. Remove annoying message.
|
||||
|
|
|
@ -700,8 +700,8 @@ gnome_filter_cmd (GtkWidget *widget, WPanel *panel)
|
|||
else
|
||||
text2 = NULL;
|
||||
} else {
|
||||
text1 = ("mc_filter_regexps");
|
||||
text3 = _(".");
|
||||
text1 = "mc_filter_regexps";
|
||||
text3 = "^.*$";
|
||||
if (!panel->filter)
|
||||
text2 = NULL;
|
||||
else
|
||||
|
@ -960,8 +960,6 @@ set_cursor_busy (WPanel *panel)
|
|||
void
|
||||
set_cursor_normal (WPanel *panel)
|
||||
{
|
||||
GdkCursor *cursor;
|
||||
|
||||
if (is_a_desktop_panel (panel))
|
||||
return;
|
||||
|
||||
|
|
Loading…
Reference in New Issue