Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Weberhofer <jweberhofer@weberhofer.at>2018-05-16 15:12:09 +0300
committerGitHub <noreply@github.com>2018-05-16 15:12:09 +0300
commiteeef699d803f459da6ba439aafc18cad3113b160 (patch)
treeb04a61d9c1fd72261dc5651b736c1bfb5d7e1017 /plugins/exec
parent5a7a59572650c553113cec5752956e0e8fb5e4f6 (diff)
Write newline instead of return
Diffstat (limited to 'plugins/exec')
-rw-r--r--plugins/exec/exec_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/exec/exec_plugin.c b/plugins/exec/exec_plugin.c
index ea2660465..a3991d4a3 100644
--- a/plugins/exec/exec_plugin.c
+++ b/plugins/exec/exec_plugin.c
@@ -201,7 +201,7 @@ static gboolean remmina_plugin_exec_run(RemminaProtocolWidget *gp)
}else {
dialog = GTK_DIALOG(gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO,
- _("WARNING! Executing a command synchronously, may hung Remmina.\rDo you really want to continue?")));
+ _("WARNING! Executing a command synchronously, may hung Remmina.\nDo you really want to continue?")));
gint result = gtk_dialog_run (GTK_DIALOG (dialog));
switch (result)