summaryrefslogtreecommitdiff
path: root/Source/Core/Common/MsgHandler.cpp
diff options
context:
space:
mode:
authorspycrab <spycrab@users.noreply.github.com>2018-08-07 15:48:17 +0200
committerspycrab <spycrab@users.noreply.github.com>2018-08-07 15:48:17 +0200
commit7cb310791b5b99a9c5d90af1dfdfc4cfb3a17918 (patch)
tree79e8bc5bef6d5e17a75e4305d569479d717135b0 /Source/Core/Common/MsgHandler.cpp
parentddf09a0841eae1108bb36177972e87fa175ebb6f (diff)
Cleanup: Remove some left over references to wxWidgets
Diffstat (limited to 'Source/Core/Common/MsgHandler.cpp')
-rw-r--r--Source/Core/Common/MsgHandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/MsgHandler.cpp b/Source/Core/Common/MsgHandler.cpp
index 670023b491..43f24c9865 100644
--- a/Source/Core/Common/MsgHandler.cpp
+++ b/Source/Core/Common/MsgHandler.cpp
@@ -24,13 +24,13 @@ std::string DefaultStringTranslator(const char* text);
static StringTranslator str_translator = DefaultStringTranslator;
// Select which of these functions that are used for message boxes. If
-// wxWidgets is enabled we will use wxMsgAlert() that is defined in Main.cpp
+// Qt is enabled we will use QtMsgAlertHandler() that is defined in Main.cpp
void RegisterMsgAlertHandler(MsgAlertHandler handler)
{
msg_handler = handler;
}
-// Select translation function. For wxWidgets use wxStringTranslator in Main.cpp
+// Select translation function.
void RegisterStringTranslator(StringTranslator translator)
{
str_translator = translator;