* Resolve further warnings on GCC4.
* Enable -Werror on GCC4 builds as well (limited to the same selected targets). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29118 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1498,7 +1498,7 @@ BApplication::_WindowAt(uint32 index, bool includeMenus) const
|
||||
uint32 count = gLooperList.CountLoopers();
|
||||
for (uint32 i = 0; i < count && index < count; i++) {
|
||||
BWindow* window = dynamic_cast<BWindow*>(gLooperList.LooperAt(i));
|
||||
if (window == NULL || window != NULL && window->fOffscreen
|
||||
if (window == NULL || (window != NULL && window->fOffscreen)
|
||||
|| (!includeMenus && dynamic_cast<BMenuWindow *>(window) != NULL)) {
|
||||
index++;
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user