summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}