From David Callu, warning fixes and removal of spaces at end of lines.

This commit is contained in:
Robert Osfield
2013-06-28 12:00:43 +00:00
parent d82768417d
commit 097aedf23c
100 changed files with 496 additions and 428 deletions

View File

@@ -883,7 +883,7 @@ void Window::managed(WindowManager* wm) {
update();
}
void Window::unmanaged(WindowManager* wm) {
void Window::unmanaged(WindowManager* /*wm*/) {
for(Iterator i = begin(); i != end(); i++) _setManaged(i->get(), true);
_wm = 0;
@@ -911,7 +911,7 @@ bool Window::removeWidget(Widget* widget) {
return false;
}
bool Window::replaceWidget(Widget* oldWidget, Widget* newWidget) {
bool Window::replaceWidget(Widget* /*oldWidget*/, Widget* /*newWidget*/) {
return false;
}