From f7955115d9825d35b3e416f1c6fa7023daad4a82 Mon Sep 17 00:00:00 2001 From: Jonas Kümmerlin Date: Fri, 4 Dec 2020 18:35:57 +0100 Subject: widget factory: fix compilation with unicode msvc --- widgetfactory.cpp | 8 ++++---- 1 file 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); } -- cgit v1.2.3