]> git.saurik.com Git - wxWidgets.git/commitdiff
don't draw with NULL font
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 15 Oct 1999 18:09:45 +0000 (18:09 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 15 Oct 1999 18:09:45 +0000 (18:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4011 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/dcclient.cpp
src/gtk1/dcclient.cpp

index 1c67530fae1a6e4c8e68576d3898841aa37eda01..cdd1f139506fc6de7f7e60c60ee82b71c7b1a15d 100644 (file)
@@ -762,6 +762,8 @@ void wxWindowDC::DoDrawText( const wxString &text, long x, long y )
 
     GdkFont *font = m_font.GetInternalFont( m_scaleY );
 
+    wxCHECK_RET( font, wxT("invalid font") );
+
     x = XLOG2DEV(x);
     y = YLOG2DEV(y);
 
index 1c67530fae1a6e4c8e68576d3898841aa37eda01..cdd1f139506fc6de7f7e60c60ee82b71c7b1a15d 100644 (file)
@@ -762,6 +762,8 @@ void wxWindowDC::DoDrawText( const wxString &text, long x, long y )
 
     GdkFont *font = m_font.GetInternalFont( m_scaleY );
 
+    wxCHECK_RET( font, wxT("invalid font") );
+
     x = XLOG2DEV(x);
     y = YLOG2DEV(y);