]> git.saurik.com Git - wxWidgets.git/commitdiff
removed weird comparison of m_oldFont with -1 (this doesn't compile with SGI CC in...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 17 Sep 2005 22:01:58 +0000 (22:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 17 Sep 2005 22:01:58 +0000 (22:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35543 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/motif/dcclient.cpp

index b8276477c31d7d272159e320e021034fd7771478..3ab64e342524e801f7422dc1868164eafbeef0dd 100644 (file)
@@ -209,7 +209,7 @@ wxWindowDC::wxWindowDC( wxWindow *window )
 
 wxWindowDC::~wxWindowDC()
 {
-    if (m_gc && (m_oldFont != (WXFont) 0) && ((long) m_oldFont != -1))
+    if (m_gc && m_oldFont)
     {
         XSetFont ((Display*) m_display, (GC) m_gc, (Font) m_oldFont);
 
@@ -1415,7 +1415,7 @@ void wxWindowDC::SetFont( const wxFont &font )
 
     if (!m_font.Ok())
     {
-        if ((m_oldFont != (WXFont) 0) && ((wxCoord) m_oldFont != -1))
+        if (m_oldFont)
         {
             XSetFont ((Display*) m_display, (GC) m_gc, (Font) m_oldFont);