]> git.saurik.com Git - wxWidgets.git/commitdiff
Avoid g++ warning about unhandled wxFONTFAMILY_XXX value in a switch.
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 26 Jan 2010 09:01:08 +0000 (09:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 26 Jan 2010 09:01:08 +0000 (09:01 +0000)
Add wxFONTFAMILY_UNKNOWN case to the switch as it will allow us to be warned
if we add a new family in the future and forget to update this code to take it
into account.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63271 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/font.cpp

index 499478eace27028413d28f05f6c90f205407d996..3add9ac4cc13cf52a3fcdec1e7becdddb5649008 100644 (file)
@@ -663,6 +663,10 @@ void wxNativeFontInfo::SetFamily(wxFontFamily family)
         case wxFONTFAMILY_DEFAULT:
             ff_family = FF_SWISS;
             break;
         case wxFONTFAMILY_DEFAULT:
             ff_family = FF_SWISS;
             break;
+
+        case wxFONTFAMILY_UNKNOWN:
+            wxFAIL_MSG( "invalid font family" );
+            return;
     }
 
     wxCHECK_RET( ff_family != FF_DONTCARE, "unknown wxFontFamily" );
     }
 
     wxCHECK_RET( ff_family != FF_DONTCARE, "unknown wxFontFamily" );