[brasero] Use return values for Always Replace (file from project) answer



commit f4d48aae92111897098803dfd08557adb7368750
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date:   Tue Jul 28 15:38:36 2009 +0200

    Use return values for Always Replace (file from project) answer

 src/brasero-data-disc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/brasero-data-disc.c b/src/brasero-data-disc.c
index 3b8ccf9..ceb1f5e 100644
--- a/src/brasero-data-disc.c
+++ b/src/brasero-data-disc.c
@@ -776,10 +776,10 @@ brasero_data_disc_name_collision_cb (BraseroTrackDataCfg *project,
 	priv = BRASERO_DATA_DISC_PRIVATE (self);
 
 	if (priv->always_replace)
-		return TRUE;
+		return FALSE;
 
 	if (priv->never_replace)
-		return FALSE;
+		return TRUE;
 
 	/* Translators: %s is the name of the file */
 	string = g_strdup_printf (_("Do you really want to replace \"%s\"?"), name);



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