]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/fontdlg.cpp
unused variable warning fix (patch 923094)
[wxWidgets.git] / src / gtk / fontdlg.cpp
index 10352b6375faeddb8c9160f52c482f7ccbad04c8..df4b0eae8aaeaf1de1c61989b60876353179256f 100644 (file)
@@ -18,6 +18,8 @@
 
 #if wxUSE_FONTDLG
 
+#ifndef __WXGPE__
+
 #include "wx/fontutil.h"
 #include "wx/fontdlg.h"
 #include "wx/utils.h"
@@ -154,7 +156,7 @@ bool wxFontDialog::DoCreate(wxWindow *parent)
     wxFont font = m_fontData.GetInitialFont();
     if( font.Ok() )
     {
-        wxNativeFontInfo *info = font.GetNativeFontInfo();
+        const wxNativeFontInfo *info = font.GetNativeFontInfo();
 
         if ( info )
         {
@@ -189,3 +191,5 @@ void wxFontDialog::SetChosenFont(const char *fontname)
 
 #endif // wxUSE_FONTDLG
 
+#endif // GPE
+