GUI2/Canvas: made set_is_dirty member public
This commit is contained in:
parent
1a231c7fdc
commit
14bb0ab73e
1 changed files with 5 additions and 5 deletions
|
@ -169,6 +169,11 @@ public:
|
|||
set_is_dirty(true);
|
||||
}
|
||||
|
||||
void set_is_dirty(const bool is_dirty)
|
||||
{
|
||||
is_dirty_ = is_dirty;
|
||||
}
|
||||
|
||||
private:
|
||||
/** Vector with the shapes to draw. */
|
||||
std::vector<shape_ptr> shapes_;
|
||||
|
@ -200,11 +205,6 @@ private:
|
|||
/** The dirty state of the canvas. */
|
||||
bool is_dirty_;
|
||||
|
||||
void set_is_dirty(const bool is_dirty)
|
||||
{
|
||||
is_dirty_ = is_dirty;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses a config object.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue