summaryrefslogtreecommitdiff
path: root/windows/about.c
diff options
context:
space:
mode:
Diffstat (limited to 'windows/about.c')
-rw-r--r--windows/about.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/windows/about.c b/windows/about.c
index 904a6ef8c..686d350f0 100644
--- a/windows/about.c
+++ b/windows/about.c
@@ -52,7 +52,7 @@ static BOOL init_about_dialog(HWND hwnd)
hFont=CreateFont (26, 0, 0, 0, FW_BOLD, FALSE, FALSE, FALSE, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_SWISS, "Arial");
if (hFont != NULL) {
- LOG(("Setting font object"));
+ LOG("Setting font object");
SendMessage(dlg_itm, WM_SETFONT, (WPARAM)hFont, 0);
}
@@ -85,7 +85,7 @@ static BOOL destroy_about_dialog(HWND hwnd)
if (dlg_itm != NULL) {
hFont = (HFONT)SendMessage(dlg_itm, WM_GETFONT, 0, 0);
if (hFont != NULL) {
- LOG(("Destroyed font object"));
+ LOG("Destroyed font object");
DeleteObject(hFont);
}
}
@@ -107,12 +107,12 @@ nsws_about_event_callback(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
case WM_COMMAND:
switch(LOWORD(wparam)) {
case IDOK:
- LOG(("OK clicked"));
+ LOG("OK clicked");
EndDialog(hwnd, IDOK);
break;
case IDCANCEL:
- LOG(("Cancel clicked"));
+ LOG("Cancel clicked");
EndDialog(hwnd, IDOK);
break;