[gnome-commander: 161/170] noop: variable renaming
- From: Uwe Scholz <uwescholz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-commander: 161/170] noop: variable renaming
- Date: Wed, 23 Dec 2020 23:52:33 +0000 (UTC)
commit 34cb52a59f485292209da7e15a3abc4f9bffcb44
Author: Uwe Scholz <u scholz83 gmx de>
Date: Wed Dec 23 21:42:08 2020 +0100
noop: variable renaming
src/gnome-cmd-file-popmenu.cc | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/src/gnome-cmd-file-popmenu.cc b/src/gnome-cmd-file-popmenu.cc
index 685be042..35a16c81 100644
--- a/src/gnome-cmd-file-popmenu.cc
+++ b/src/gnome-cmd-file-popmenu.cc
@@ -105,18 +105,18 @@ static void mime_exec_multiple (GList *files, GnomeCmdApp *app)
for (; files; files = files->next)
{
- auto f = static_cast<GnomeCmdFile*> (files->data);
+ auto gnomeCmdFile = static_cast<GnomeCmdFile*> (files->data);
- if (gnome_vfs_uri_is_local (f->get_uri()))
+ if (gnome_vfs_uri_is_local (gnomeCmdFile->get_uri()))
{
- local_files = g_list_append (local_files, f->gFile);
+ local_files = g_list_append (local_files, gnomeCmdFile->gFile);
}
else
{
++no_of_remote_files;
if (gnome_cmd_app_get_handles_uris (app) && gnome_cmd_data.options.honor_expect_uris)
{
- local_files = g_list_append (local_files, f->gFile);
+ local_files = g_list_append (local_files, gnomeCmdFile->gFile);
}
else
{
@@ -131,17 +131,17 @@ static void mime_exec_multiple (GList *files, GnomeCmdApp *app)
if (retid==1)
{
- gchar *path_str = get_temp_download_filepath (f->get_name());
+ gchar *path_str = get_temp_download_filepath (gnomeCmdFile->get_name());
if (!path_str) return;
- GnomeVFSURI *src_uri = gnome_vfs_uri_dup (f->get_uri());
+ GnomeVFSURI *src_uri = gnome_vfs_uri_dup (gnomeCmdFile->get_uri());
GnomeCmdPlainPath path(path_str);
GnomeVFSURI *dest_uri = gnome_cmd_con_create_uri (get_home_con (), &path);
src_uri_list = g_list_append (src_uri_list, src_uri);
dest_uri_list = g_list_append (dest_uri_list, dest_uri);
- local_files = g_list_append (local_files, f->gFile);
+ local_files = g_list_append (local_files, gnomeCmdFile->gFile);
}
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]