commit a68970f053035cfaa9ff6064d12e7801a2316193
parent 75ecd92decc874d9d890a05e9ed7dc286cbf466d
Author: cfillion <cfillion@users.noreply.github.com>
Date: Sat, 23 Apr 2016 11:57:54 -0400
fix typos in the message shown if a transaction cannot be created
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/reapack.cpp b/src/reapack.cpp
@@ -491,11 +491,11 @@ Transaction *ReaPack::createTransaction()
auto_char msg[512] = {};
auto_snprintf(msg, sizeof(msg),
- AUTO_STR("The following error occured while creating a transaction:\n\n%s"),
+ AUTO_STR("The following error occurred while creating a transaction:\n\n%s"),
desc.c_str()
);
- MessageBox(m_mainWindow, msg, AUTO_STR("ReaPack – Fatal Error"), MB_OK);
+ MessageBox(m_mainWindow, msg, AUTO_STR("ReaPack \u2013 Fatal Error"), MB_OK);
return nullptr;
}