projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
define arrays of chartoo as the existing ones can't be used to store char values...
[wxWidgets.git]
/
src
/
generic
/
fontpickerg.cpp
diff --git
a/src/generic/fontpickerg.cpp
b/src/generic/fontpickerg.cpp
index 1a67f07b85a0d14fdcea7a05a61853ef86531d2c..26f9908d7df1dd05c4ea60136f016cbebe1f0403 100644
(file)
--- a/
src/generic/fontpickerg.cpp
+++ b/
src/generic/fontpickerg.cpp
@@
-24,11
+24,10
@@
#pragma hdrstop
#endif
#pragma hdrstop
#endif
-#ifndef WX_PRECOMP
- #include "wx/window.h"
-#endif //WX_PRECOMP
+#if wxUSE_FONTPICKERCTRL
#include "wx/fontpicker.h"
#include "wx/fontpicker.h"
+
#include "wx/fontdlg.h"
#include "wx/fontdlg.h"
@@
-36,8
+35,6
@@
// implementation
// ============================================================================
// implementation
// ============================================================================
-#if wxUSE_FONTPICKERCTRL
-
wxFontData wxGenericFontButton::ms_data;
IMPLEMENT_DYNAMIC_CLASS(wxGenericFontButton, wxButton)
wxFontData wxGenericFontButton::ms_data;
IMPLEMENT_DYNAMIC_CLASS(wxGenericFontButton, wxButton)
@@
-67,7
+64,7
@@
bool wxGenericFontButton::Create( wxWindow *parent, wxWindowID id,
wxCommandEventHandler(wxGenericFontButton::OnButtonClick),
NULL, this);
wxCommandEventHandler(wxGenericFontButton::OnButtonClick),
NULL, this);
- m_selectedFont = initial;
+ m_selectedFont = initial
.IsOk() ? initial : *wxNORMAL_FONT
;
UpdateFont();
InitFontData();
UpdateFont();
InitFontData();