Include wx/qt/private/converter.h from src/qt/converter.cpp
Follow standard practice and include the header corresponding to the source file from it explicitly. Also include wx/gdicmn.h from the header itself, this is a pretty common header and there is no real advantage in avoiding it there and including it allows to avoid a bunch of forward declarations.
This commit is contained in:
parent
6bd15cd1ee
commit
b0d88a306d
@ -15,21 +15,19 @@
|
|||||||
#include <QtCore/Qt>
|
#include <QtCore/Qt>
|
||||||
|
|
||||||
#include "wx/kbdstate.h"
|
#include "wx/kbdstate.h"
|
||||||
|
#include "wx/gdicmn.h"
|
||||||
|
|
||||||
// Rely on overloading and let the compiler pick the correct version, which makes
|
// Rely on overloading and let the compiler pick the correct version, which makes
|
||||||
// them easier to use then to write wxQtConvertQtRectToWxRect() or wxQtConvertWxRectToQtRect()
|
// them easier to use then to write wxQtConvertQtRectToWxRect() or wxQtConvertWxRectToQtRect()
|
||||||
|
|
||||||
class WXDLLIMPEXP_FWD_CORE wxPoint;
|
|
||||||
class QPoint;
|
class QPoint;
|
||||||
wxPoint wxQtConvertPoint( const QPoint &point );
|
wxPoint wxQtConvertPoint( const QPoint &point );
|
||||||
QPoint wxQtConvertPoint( const wxPoint &point );
|
QPoint wxQtConvertPoint( const wxPoint &point );
|
||||||
|
|
||||||
class WXDLLIMPEXP_FWD_CORE wxRect;
|
|
||||||
class QRect;
|
class QRect;
|
||||||
wxRect wxQtConvertRect( const QRect &rect );
|
wxRect wxQtConvertRect( const QRect &rect );
|
||||||
QRect wxQtConvertRect( const wxRect &rect );
|
QRect wxQtConvertRect( const wxRect &rect );
|
||||||
|
|
||||||
class WXDLLIMPEXP_FWD_BASE wxString;
|
|
||||||
class QString;
|
class QString;
|
||||||
wxString wxQtConvertString( const QString &str );
|
wxString wxQtConvertString( const QString &str );
|
||||||
QString wxQtConvertString( const wxString &str );
|
QString wxQtConvertString( const wxString &str );
|
||||||
@ -44,7 +42,6 @@ QDate wxQtConvertDate(const wxDateTime& date);
|
|||||||
|
|
||||||
#endif // wxUSE_DATETIME
|
#endif // wxUSE_DATETIME
|
||||||
|
|
||||||
class WXDLLIMPEXP_FWD_BASE wxSize;
|
|
||||||
class QSize;
|
class QSize;
|
||||||
wxSize wxQtConvertSize( const QSize &size );
|
wxSize wxQtConvertSize( const QSize &size );
|
||||||
QSize wxQtConvertSize( const wxSize &size );
|
QSize wxQtConvertSize( const wxSize &size );
|
||||||
|
@ -23,8 +23,7 @@
|
|||||||
#include <QtCore/QDate>
|
#include <QtCore/QDate>
|
||||||
#endif // wxUSE_DATETIME
|
#endif // wxUSE_DATETIME
|
||||||
|
|
||||||
#include "wx/kbdstate.h"
|
#include "wx/qt/private/converter.h"
|
||||||
#include "wx/gdicmn.h"
|
|
||||||
|
|
||||||
|
|
||||||
wxPoint wxQtConvertPoint( const QPoint &point )
|
wxPoint wxQtConvertPoint( const QPoint &point )
|
||||||
|
Loading…
Reference in New Issue
Block a user