Correctly override ModelObject::can*() virtual methods.

This commit is contained in:
Jim Evins
2018-01-01 19:42:39 -05:00
parent ff003e5b17
commit b2859d47bb
6 changed files with 12 additions and 12 deletions
+3 -3
View File
@@ -183,7 +183,7 @@ namespace glabels
///
/// Can Fill Capability Implementation
///
bool ModelShapeObject::canFill()
bool ModelShapeObject::canFill() const
{
return true;
}
@@ -192,7 +192,7 @@ namespace glabels
///
/// Can Line Color Capability Implementation
///
bool ModelShapeObject::canLineColor()
bool ModelShapeObject::canLineColor() const
{
return true;
}
@@ -201,7 +201,7 @@ namespace glabels
///
/// Can Line Width Capability Implementation
///
bool ModelShapeObject::canLineWidth()
bool ModelShapeObject::canLineWidth() const
{
return true;
}