Include the missing headers, notable QtGui/QFont from wx/fontutil.h which uses a QFont object. Closes #16750.
31 lines
738 B
C++
31 lines
738 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/qt/colour.h
|
|
// Purpose: wxColour class implementation for wxQt
|
|
// Author: Kolya Kosenko
|
|
// Created: 2010-05-12
|
|
// Copyright: (c) 2010 Kolya Kosenko
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/colour.h"
|
|
#endif // WX_PRECOMP
|
|
|
|
#include "wx/qt/private/utils.h"
|
|
|
|
|
|
int wxColour::GetPixel() const
|
|
{
|
|
wxMISSING_IMPLEMENTATION( "wxColour::GetPixel" );
|
|
return 0;
|
|
}
|
|
|
|
#include "wx/colour.h"
|