Minor source cleaning.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -24,17 +24,16 @@
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
|
||||
#if wxUSE_FONTPICKERCTRL
|
||||
|
||||
#include "wx/fontpicker.h"
|
||||
#include "wx/fontenum.h"
|
||||
#include "wx/tokenzr.h"
|
||||
|
||||
|
||||
// ============================================================================
|
||||
// implementation
|
||||
// ============================================================================
|
||||
|
||||
#if wxUSE_FONTPICKERCTRL
|
||||
|
||||
DEFINE_EVENT_TYPE(wxEVT_COMMAND_FONTPICKER_CHANGED)
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxFontPickerCtrl, wxPickerBase)
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxFontPickerEvent, wxCommandEvent)
|
||||
@@ -94,9 +93,9 @@ wxFont wxFontPickerCtrl::String2Font(const wxString &s)
|
||||
if (size.ToDouble(&n))
|
||||
{
|
||||
if (n < 1)
|
||||
str = str.Left(str.Len() - size.Len()) + wxT("1");
|
||||
str = str.Left(str.length() - size.length()) + wxT("1");
|
||||
else if (n >= m_nMaxPointSize)
|
||||
str = str.Left(str.Len() - size.Len()) +
|
||||
str = str.Left(str.length() - size.length()) +
|
||||
wxString::Format(wxT("%d"), m_nMaxPointSize);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user