[gnome-commander] noop: variable renamed
- From: Uwe Scholz <uwescholz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-commander] noop: variable renamed
- Date: Sun, 17 Jan 2021 20:48:30 +0000 (UTC)
commit 3b95643901c99c2b6ed2d6f88f03d911ec2a60a0
Author: Uwe Scholz <u scholz83 gmx de>
Date: Mon Jan 11 22:25:24 2021 +0100
noop: variable renamed
src/gnome-cmd-file-list.cc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/gnome-cmd-file-list.cc b/src/gnome-cmd-file-list.cc
index 539bedf0..899542e6 100644
--- a/src/gnome-cmd-file-list.cc
+++ b/src/gnome-cmd-file-list.cc
@@ -2809,15 +2809,15 @@ void GnomeCmdFileList::update_style()
}
-gboolean GnomeCmdFileList::file_is_wanted(GnomeCmdFile *f)
+gboolean GnomeCmdFileList::file_is_wanted(GnomeCmdFile *gnomeCmdFile)
{
- g_return_val_if_fail (f != nullptr, FALSE);
+ g_return_val_if_fail (gnomeCmdFile != nullptr, FALSE);
- GnomeVFSFileInfo *info = f->info;
+ GnomeVFSFileInfo *info = gnomeCmdFile->info;
if (strcmp (info->name, ".") == 0)
return FALSE;
- if (f->is_dotdot)
+ if (gnomeCmdFile->is_dotdot)
return FALSE;
if (gnome_cmd_data.options.filter.file_types[info->type])
return FALSE;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]