remove unused code
This commit is contained in:
@@ -95,9 +95,7 @@ struct LIBCANVAS_API Rect
|
||||
Rect expand (Distance) const;
|
||||
bool contains (Duple) const;
|
||||
Rect fix () const;
|
||||
|
||||
Rect convert_to_device (Cairo::RefPtr<Cairo::Context>) const;
|
||||
Rect convert_to_user (Cairo::RefPtr<Cairo::Context>) const;
|
||||
bool empty() const { return (x0 == x1 && y0 == y1); }
|
||||
|
||||
Distance width () const {
|
||||
return x1 - x0;
|
||||
|
||||
@@ -121,39 +121,6 @@ Rect::fix () const
|
||||
return r;
|
||||
}
|
||||
|
||||
Rect
|
||||
Rect::convert_to_device (Cairo::RefPtr<Cairo::Context> c) const
|
||||
{
|
||||
Coord xa, ya, xb, yb;
|
||||
|
||||
xa = x0;
|
||||
xb = x1;
|
||||
ya = y0;
|
||||
yb = y1;
|
||||
|
||||
c->user_to_device (xa, ya);
|
||||
c->user_to_device (xb, yb);
|
||||
|
||||
return Rect (xa, ya, xb, yb);
|
||||
}
|
||||
|
||||
|
||||
Rect
|
||||
Rect::convert_to_user (Cairo::RefPtr<Cairo::Context> c) const
|
||||
{
|
||||
Coord xa, ya, xb, yb;
|
||||
|
||||
xa = x0;
|
||||
xb = x1;
|
||||
ya = y0;
|
||||
yb = y1;
|
||||
|
||||
c->device_to_user (xa, ya);
|
||||
c->device_to_user (xb, yb);
|
||||
|
||||
return Rect (xa, ya, xb, yb);
|
||||
}
|
||||
|
||||
Duple
|
||||
ArdourCanvas::operator- (Duple const & o)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user