[loc] fix localization for notification dialog titles

* Also fix double columns from the update dialog
* Issues reported by Wayne Ying
This commit is contained in:
Pete Batard 2013-12-25 22:45:29 +00:00
parent 24e73c5e10
commit d5a02c63f1
4 changed files with 16 additions and 16 deletions

View file

@ -681,7 +681,7 @@ BOOL Notification(int type, const notification_info* more_info, char* title, cha
hMessageIcon = LoadIcon(NULL, IDI_INFORMATION);
break;
}
ret = (DialogBox(hMainInstance, MAKEINTRESOURCE(IDD_NOTIFICATION), hMainDialog, NotificationCallback) == IDYES);
ret = (DialogBoxW(hMainInstance, MAKEINTRESOURCEW(IDD_NOTIFICATION), hMainDialog, NotificationCallback) == IDYES);
safe_free(szMessageText);
dialog_showing--;
return ret;