remove legacy CANVAS_COMPATIBILITY property_foo() stuff (related to gnomecanvas API) from libcanvas

This commit is contained in:
Paul Davis 2013-12-31 11:54:05 -05:00
parent 859bf5257c
commit 8f876bb5ab

View file

@ -52,27 +52,6 @@ public:
virtual void set_outline (bool);
#ifdef CANVAS_COMPATIBILITY
int& property_first_arrowhead () {
return _foo_int;
}
int& property_last_arrowhead () {
return _foo_int;
}
int& property_arrow_shape_a () {
return _foo_int;
}
int& property_arrow_shape_b () {
return _foo_int;
}
int& property_arrow_shape_c () {
return _foo_int;
}
bool& property_draw () {
return _foo_bool;
}
#endif
protected:
void setup_outline_context (Cairo::RefPtr<Cairo::Context>) const;
@ -80,11 +59,6 @@ protected:
Color _outline_color;
Distance _outline_width;
bool _outline;
#ifdef CANVAS_COMPATIBILITY
int _foo_int;
bool _foo_bool;
#endif
};
}