]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/gdicmn.cpp
ping method almost there
[wxWidgets.git] / src / common / gdicmn.cpp
index 53a1a341179f67e18adf3522870d13c7d893f3c7..7755f181e151c071d04c2930802ef9344ef8541e 100644 (file)
@@ -90,13 +90,13 @@ bool wxRect::operator==(const wxRect& rect) const
 }
 
 const wxRect& wxRect::operator += (const wxRect& rect)
-{ 
-       *this = (*this + rect); 
+{
+       *this = (*this + rect);
        return ( *this ) ;
 }
 
 wxRect wxRect::operator + (const wxRect& rect) const
-{ 
+{
        int x1 = wxMin(this->x, rect.x);
        int y1 = wxMin(this->y, rect.y);
        int y2 = wxMax(y+height, rect.height+rect.y);
@@ -256,6 +256,9 @@ wxColour *wxColourDatabase::FindColour(const wxString& colour)
 #ifdef __WXMSW__
   else return NULL;
 #endif
+#ifdef __WXPM__
+  else return NULL;
+#endif
 
 // TODO for other implementations. This should really go into
 // platform-specific directories.
@@ -595,7 +598,12 @@ wxFont *wxFontList::
           //#if defined(__X__)
           //          each_font->GetFontId () == FamilyOrFontId) /* New font system */
           //#else
-          each_font->GetFamily () == FamilyOrFontId &&
+#if defined(__WXGTK__)
+          (each_font->GetFamily() == FamilyOrFontId ||
+           (each_font->GetFamily() == wxSWISS && FamilyOrFontId == wxDEFAULT)) &&
+#else
+          each_font->GetFamily() == FamilyOrFontId &&
+#endif
           ((each_font->GetFaceName() == _T("")) || each_font->GetFaceName() == Face))
         //#endif
         return each_font;