Final changes, branch now buildable

This commit is contained in:
Thanatomanic
2020-10-16 16:15:10 +02:00
parent badf92ba64
commit c8ef1ee628
11 changed files with 34 additions and 34 deletions

View File

@@ -307,14 +307,14 @@ public:
void drawToMOChannel (Cairo::RefPtr<Cairo::Context> &cr, unsigned short id, ObjectMOBuffer *objectBuffer, EditCoordSystem &coordSystem) override;
};
class Rectangle : public Geometry
class EditRectangle : public Geometry // New class name to avoid conflict elsewhere (exiv2), would be nicer to put in namespace?
{
public:
rtengine::Coord topLeft;
rtengine::Coord bottomRight;
bool filled;
Rectangle ();
EditRectangle ();
void setXYWH(int left, int top, int width, int height);
void setXYXY(int left, int top, int right, int bottom);
@@ -528,7 +528,7 @@ inline Circle::Circle () :
false) {
}
inline Rectangle::Rectangle () :
inline EditRectangle::EditRectangle () :
topLeft (0, 0), bottomRight (10, 10), filled (false) {
}