[MPlayer-cvslog] r36816 - trunk/gui/win32/preferences.c

ib subversion at mplayerhq.hu
Sat Feb 8 22:43:04 CET 2014


Author: ib
Date: Sat Feb  8 22:43:04 2014
New Revision: 36816

Log:
Change the message box type.

It is just an information, that some settings require
the playback to be restarted, not a warning.

Patch by Stephen Sheldon, sfsheldo gmail com.

Modified:
   trunk/gui/win32/preferences.c

Modified: trunk/gui/win32/preferences.c
==============================================================================
--- trunk/gui/win32/preferences.c	Sat Feb  8 22:41:48 2014	(r36815)
+++ trunk/gui/win32/preferences.c	Sat Feb  8 22:43:04 2014	(r36816)
@@ -634,8 +634,8 @@ static LRESULT CALLBACK PrefsWndProc(HWN
                     else if(SendDlgItemMessage(hwnd, ID_OSD3, BM_GETCHECK, 0, 0) == BST_CHECKED)
                         osd_level = 3;
 
-                    caption = strdup(acp(MSGTR_GUI_Warning));
-                    MessageBox(hwnd, acp(MSGTR_GUI_MSG_PlaybackNeedsRestart), caption, MB_OK);
+                    caption = strdup(acp(MSGTR_GUI_Information));
+                    MessageBox(hwnd, acp(MSGTR_GUI_MSG_PlaybackNeedsRestart), caption, MB_OK | MB_ICONINFORMATION);
                     free(caption);
                     DestroyWindow(hwnd);
                     break;


More information about the MPlayer-cvslog mailing list