[nautilus/wip/alexpandelea/batchRename: 7/17] Switch append/prepend functions



commit 7f86941f3966ece2aa2ea9650ecdfd0a8b661e91
Author: Alexandru Pandelea <alexandru pandelea gmail com>
Date:   Fri Jun 17 15:10:15 2016 +0300

    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

 src/nautilus-batch-rename-utilities.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/nautilus-batch-rename-utilities.c b/src/nautilus-batch-rename-utilities.c
index 2572807..8668d6f 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;
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]