[gnome-commander: 162/170] noop: variable renaming
- From: Uwe Scholz <uwescholz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-commander: 162/170] noop: variable renaming
- Date: Wed, 23 Dec 2020 23:52:34 +0000 (UTC)
commit b27512f634605c61f8c2bf16eeb83db6d444f801
Author: Uwe Scholz <u scholz83 gmx de>
Date: Wed Dec 23 21:45:08 2020 +0100
noop: variable renaming
src/gnome-cmd-file-popmenu.cc | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/gnome-cmd-file-popmenu.cc b/src/gnome-cmd-file-popmenu.cc
index 35a16c81..5701ff28 100644
--- a/src/gnome-cmd-file-popmenu.cc
+++ b/src/gnome-cmd-file-popmenu.cc
@@ -72,21 +72,21 @@ struct GnomeCmdFilePopmenuPrivate
static void do_mime_exec_multiple (gpointer *args)
{
- auto app = static_cast<GnomeCmdApp*> (args[0]);
+ auto gnomeCmdApp = static_cast<GnomeCmdApp*> (args[0]);
auto files = static_cast<GList*> (args[1]);
if (files)
{
- string cmdString = gnome_cmd_app_get_command (app);
+ string cmdString = gnome_cmd_app_get_command (gnomeCmdApp);
- DEBUG('g', "Launching \"%s\"\n", g_app_info_get_commandline(app->gAppInfo));
+ DEBUG('g', "Launching \"%s\"\n", g_app_info_get_commandline(gnomeCmdApp->gAppInfo));
- g_app_info_launch(app->gAppInfo, files, nullptr, nullptr);
+ g_app_info_launch(gnomeCmdApp->gAppInfo, files, nullptr, nullptr);
g_list_free (files);
}
- gnome_cmd_app_free (app);
+ gnome_cmd_app_free (gnomeCmdApp);
g_free (args);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]