summaryrefslogtreecommitdiff
path: root/widgetfactory.cpp
diff options
context:
space:
mode:
authorJonas Kümmerlin <jonas@kuemmerlin.eu>2020-12-04 18:35:57 +0100
committerJonas Kümmerlin <jonas@kuemmerlin.eu>2020-12-04 18:35:57 +0100
commitf7955115d9825d35b3e416f1c6fa7023daad4a82 (patch)
tree1cff46b33485cb342480eaf1caee0311eb9cbd08 /widgetfactory.cpp
parentfdb780a69d47d6438c0116a208afad2e94476e95 (diff)
widget factory: fix compilation with unicode msvc
Diffstat (limited to 'widgetfactory.cpp')
-rw-r--r--widgetfactory.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/widgetfactory.cpp b/widgetfactory.cpp
index f26f64b..5ec3f75 100644
--- a/widgetfactory.cpp
+++ b/widgetfactory.cpp
@@ -1087,10 +1087,10 @@ handleCommand(void *closure, HWND window, WORD notificationcode, WORD sourceid,
}
if (sourceid == IDM_MESSAGEDLG_INFO) {
- const TCHAR *text = TEXT("Hello World!\r\n\r\n"
- "This is a really long text to show that there is no automatic line breaking going on.\r\n"
- "We also want to demo\r\n\r\n\r\n\r\n\r\n\r\n"
- "what happens when the text is very high");
+ const TCHAR *text = TEXT("Hello World!\r\n\r\n")
+ TEXT("This is a really long text to show that there is no automatic line breaking going on.\r\n")
+ TEXT("We also want to demo\r\n\r\n\r\n\r\n\r\n\r\n")
+ TEXT("what happens when the text is very high");
ALF_MessageDlg_Information(window, text, TEXT("Hello"), NULL);
}