Ran fixtabs to enforce four space tabs

This commit is contained in:
Robert Osfield
2008-08-18 11:17:44 +00:00
parent 9c8e44659f
commit 0b39044666
15 changed files with 2295 additions and 2295 deletions

View File

@@ -14,19 +14,19 @@ Window(canvas, co) {
}
void Canvas::_resizeImplementation(point_type w, point_type h) {
// A Canvas has no layout, so it doesn't really know how to honor a resize
// request. :) The best I could do here is store the differences and add them
// later to the calls to getWidth/getHeight.
// A Canvas has no layout, so it doesn't really know how to honor a resize
// request. :) The best I could do here is store the differences and add them
// later to the calls to getWidth/getHeight.
}
bool Canvas::addWidget(Widget* widget, point_type x, point_type y) {
if(Window::addWidget(widget)) {
widget->setOrigin(x, y);
if(Window::addWidget(widget)) {
widget->setOrigin(x, y);
return true;
}
return true;
}
return false;
return false;
}
}