Common: declare COLOR4D inside KIGFX
Forward declaring as just COLOR4D is no right, though can work due to people putting using directives in headers.
This commit is contained in:
parent
ce93934f08
commit
073c03e61f
|
@ -30,8 +30,11 @@
|
||||||
#include <wx/bitmap.h>
|
#include <wx/bitmap.h>
|
||||||
#include <wx/image.h>
|
#include <wx/image.h>
|
||||||
|
|
||||||
|
namespace KIGFX
|
||||||
|
{
|
||||||
class COLOR4D;
|
class COLOR4D;
|
||||||
|
}
|
||||||
|
|
||||||
class LINE_READER;
|
class LINE_READER;
|
||||||
class PLOTTER;
|
class PLOTTER;
|
||||||
|
|
||||||
|
@ -243,7 +246,7 @@ public:
|
||||||
* @param aDefaultPensize = the pen size used to plot the rectangle when bitmap is not supported
|
* @param aDefaultPensize = the pen size used to plot the rectangle when bitmap is not supported
|
||||||
*/
|
*/
|
||||||
void PlotImage( PLOTTER* aPlotter, const wxPoint& aPos,
|
void PlotImage( PLOTTER* aPlotter, const wxPoint& aPos,
|
||||||
COLOR4D aDefaultColor, int aDefaultPensize );
|
KIGFX::COLOR4D aDefaultColor, int aDefaultPensize );
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue