From 154a8bf24ec8b358144f9fad8c55d0e03c624b1b Mon Sep 17 00:00:00 2001 From: Sigmanor Date: Mon, 25 Jan 2016 20:26:39 +0200 Subject: [PATCH] Added quotes --- Crypto Notepad/Form1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crypto Notepad/Form1.cs b/Crypto Notepad/Form1.cs index aac1b8e..f718875 100644 --- a/Crypto Notepad/Form1.cs +++ b/Crypto Notepad/Form1.cs @@ -488,7 +488,7 @@ private void deleteFileToolStripMenuItem_Click_1(object sender, EventArgs e) { using (new CenterWinDialog(this)) { - if (MessageBox.Show("Delete file: " + filename + " ?", "Crypto Notepad", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) + if (MessageBox.Show("Delete file: " + "\"" + filename + "\"" + " ?", "Crypto Notepad", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { File.Delete(filename); customRTB.Clear();