/////////////////////////////////////////////////////////////////////////////
-// Name: gtk/fontdlg.cpp
+// Name: src/gtk1/fontdlg.cpp
// Purpose: wxFontDialog
// Author: Robert Roebling
// Id: $Id$
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
-#include "wx/defs.h"
+#if wxUSE_FONTDLG && !defined(__WXGPE__)
-#if wxUSE_FONTDLG
+#include "wx/fontdlg.h"
-#ifndef __WXGPE__
+#ifndef WX_PRECOMP
+ #include "wx/intl.h"
+ #include "wx/utils.h"
+ #include "wx/msgdlg.h"
+#endif
-#include "wx/fontdlg.h"
#include "wx/fontutil.h"
-#include "wx/utils.h"
-#include "wx/intl.h"
-#include "wx/debug.h"
-#include "wx/msgdlg.h"
#include "wx/gtk1/private.h"
win->Close();
- return TRUE;
+ return true;
}
}
bool wxFontDialog::DoCreate(wxWindow *parent)
{
- m_needParent = FALSE;
+ m_needParent = false;
if (!PreCreation( parent, wxDefaultPosition, wxDefaultSize ) ||
!CreateBase( parent, -1, wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE,
wxDefaultValidator, wxT("fontdialog") ))
{
wxFAIL_MSG( wxT("wxFontDialog creation failed") );
- return FALSE;
+ return false;
}
wxString m_message( _("Choose font") );
}
}
- return TRUE;
+ return true;
}
wxFontDialog::~wxFontDialog()
m_fontData.SetChosenFont(wxFont( wxString::FromAscii(fontname) ));
}
-#endif // wxUSE_FONTDLG
-
-#endif // GPE
-
+#endif // wxUSE_FONTDLG && !defined(__WXGPE__)