Skip to content
Snippets Groups Projects
Commit 6e1d9910 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Minor style checking cleanups.

parent c8f6fd91
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,8 @@ using NLog.Config; ...@@ -12,6 +12,8 @@ using NLog.Config;
using NLog.Targets; using NLog.Targets;
using Timer = System.Timers.Timer; using Timer = System.Timers.Timer;
// ReSharper disable RedundantDefaultMemberInitializer
namespace ATxTray namespace ATxTray
{ {
public class AutoTxTray : ApplicationContext public class AutoTxTray : ApplicationContext
...@@ -296,8 +298,8 @@ namespace ATxTray ...@@ -296,8 +298,8 @@ namespace ATxTray
} }
catch (Exception ex) { catch (Exception ex) {
Log.Error("Showing the TaskDialog failed: {0}", ex.Message); Log.Error("Showing the TaskDialog failed: {0}", ex.Message);
var res = MessageBox.Show($"{instructionText}\n{footerText}\n\n" + var res = MessageBox.Show($@"{instructionText}\n{footerText}\n\n" +
"Press [OK] to confirm selection.", caption, @"Press [OK] to confirm selection.", caption,
MessageBoxButtons.OKCancel, MessageBoxIcon.Question); MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
if (res == DialogResult.OK) if (res == DialogResult.OK)
SubmitDirForTransfer(); SubmitDirForTransfer();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment