[gnome-commander/get_rid_of_xml] noop: variable rename, C++11 initialization
- From: Uwe Scholz <uwescholz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-commander/get_rid_of_xml] noop: variable rename, C++11 initialization
- Date: Mon, 14 Jan 2019 21:55:37 +0000 (UTC)
commit 5e72fe9905b6f7286dc4dacb1d0b2306e1cb4010
Author: Uwe Scholz <u scholz83 gmx de>
Date: Sat Jan 12 21:19:49 2019 +0100
noop: variable rename, C++11 initialization
src/gnome-cmd-data.cc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/gnome-cmd-data.cc b/src/gnome-cmd-data.cc
index 6a3493b6..8c837456 100644
--- a/src/gnome-cmd-data.cc
+++ b/src/gnome-cmd-data.cc
@@ -2378,8 +2378,8 @@ void GnomeCmdData::load_advrename_profiles ()
g_variant_get (gVariantProfiles, GCMD_SETTINGS_ADVRENAME_PROFILES_FORMAT_STRING, &iter1);
- gchar *name = NULL;
- gchar *template_string = NULL;
+ gchar *name {nullptr};
+ gchar *templateString {nullptr};
guint counter_start = 0;
guint counter_step = 0;
guint counter_width = 0;
@@ -2391,7 +2391,7 @@ void GnomeCmdData::load_advrename_profiles ()
while (g_variant_iter_loop (iter1,
GCMD_SETTINGS_ADVRENAME_PROFILE_FORMAT_STRING,
&name,
- &template_string,
+ &templateString,
&counter_start,
&counter_step,
&counter_width,
@@ -2408,7 +2408,7 @@ void GnomeCmdData::load_advrename_profiles ()
profile.reset();
profile.name = name;
- profile.template_string = template_string;
+ profile.template_string = templateString;
profile.counter_start = counter_start;
profile.counter_step = counter_step;
profile.counter_width = counter_width;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]