summaryrefslogtreecommitdiff
path: root/thunar/thunar-permissions-chooser.c
diff options
context:
space:
mode:
authorBenedikt Meurer <benny@xfce.org>2006-04-23 17:23:05 +0000
committerBenedikt Meurer <benny@xfce.org>2006-04-23 17:23:05 +0000
commitebf8eaeac596a06da3edc4da7797fbfbc510ed0f (patch)
tree1ab21f528cc78d14721a21d982f2bee632b9ef6c /thunar/thunar-permissions-chooser.c
parent7dcbbec55cd9af75523f7836d40bb4ea8d9f401d (diff)
downloadthunar-ebf8eaeac596a06da3edc4da7797fbfbc510ed0f.tar.gz
2006-04-23 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-launcher.c, thunar/thunar-permissions-chooser.c, thunar/thunar-standard-view.c: Use indirect string passing for gtk_message_dialog_new() in case the strings (i.e. filenames) contain printf() parameter specifications. Bug #1704. (Old svn revision: 21186)
Diffstat (limited to 'thunar/thunar-permissions-chooser.c')
-rw-r--r--thunar/thunar-permissions-chooser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thunar/thunar-permissions-chooser.c b/thunar/thunar-permissions-chooser.c
index 56c1eea5..c9b6f485 100644
--- a/thunar/thunar-permissions-chooser.c
+++ b/thunar/thunar-permissions-chooser.c
@@ -1065,7 +1065,7 @@ thunar_permissions_chooser_fixperm_clicked (ThunarPermissionsChooser *chooser,
| GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_NONE,
- _("Correct folder permissions automatically?"));
+ "%s.", _("Correct folder permissions automatically?"));
gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
gtk_dialog_add_button (GTK_DIALOG (dialog), _("Correct folder permissions"), GTK_RESPONSE_OK);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);