that should be all

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@258 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2007-04-16 15:49:25 +00:00
parent f185a2c6ab
commit d4ad3ae704
+23 -1
View File
@@ -49,7 +49,7 @@ new:
// -----------------------------------------------------------------------------
purpose: Draw 'checked' menu items with a border
file: src\msw\ownerdrw.cpp
file: src/msw/ownerdrw.cpp
line: 464
old:
// there should be enough space!
@@ -128,3 +128,25 @@ new:
// -----------------------------------------------------------------------------
purpose: Don't mess with the default GUI font for no reason
file: src/msw/settings.cpp
line: 226
old:
wxNativeFontInfo info;
info.lf = lf;
#ifndef __WXWINCE__
// We want Windows 2000 or later to have new fonts even MS Shell Dlg
// is returned as default GUI font for compatibility
int verMaj;
if(index == DEFAULT_GUI_FONT && wxGetOsVersion(&verMaj) == wxOS_WINDOWS_NT && verMaj >= 5)
wxStrcpy(info.lf.lfFaceName, wxT("MS Shell Dlg 2"));
#endif
// Under MicroWindows we pass the HFONT as well
new:
wxNativeFontInfo info;
info.lf = lf;
//@@@ 2006-11-21: Don't mess with my Default GUI Font!
// Under MicroWindows we pass the HFONT as well
// -----------------------------------------------------------------------------