summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandru Pandelea <alexandru.pandelea@gmail.com>2016-06-17 15:10:15 +0300
committerAlexandru Pandelea <alexandru.pandelea@gmail.com>2016-07-02 14:57:16 +0300
commit7f86941f3966ece2aa2ea9650ecdfd0a8b661e91 (patch)
treec97f50cb39ecf71f5df9854461fdeb3ab87beba8
parent8f93701b28b0b6c1bae2ca90475796c51aab9e3d (diff)
downloadnautilus-7f86941f3966ece2aa2ea9650ecdfd0a8b661e91.tar.gz
Switch append/prepend functions
Append was doing what prepend was supposed to do and prepend what append should do. https://bugzilla.gnome.org/show_bug.cgi?id=768311
-rw-r--r--src/nautilus-batch-rename-utilities.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nautilus-batch-rename-utilities.c b/src/nautilus-batch-rename-utilities.c
index 2572807b9..8668d6f42 100644
--- a/src/nautilus-batch-rename-utilities.c
+++ b/src/nautilus-batch-rename-utilities.c
@@ -10,8 +10,8 @@
#define MAX_DISPLAY_LEN 40
static gchar*
-batch_rename_prepend (gchar *file_name,
- gchar *entry_text)
+batch_rename_append (gchar *file_name,
+ gchar *entry_text)
{
gchar *result;
@@ -25,8 +25,8 @@ batch_rename_prepend (gchar *file_name,
}
static gchar*
-batch_rename_append (gchar *file_name,
- gchar *entry_text)
+batch_rename_prepend (gchar *file_name,
+ gchar *entry_text)
{
gchar *result;