Remove unnecessary call to updateHirarchy

updateHierarchy is already called in the lower/raise member function in
the QQnxWindow.

Change-Id: If3765fa7a7e69273672d47003534b04e3615916c
Reviewed-by: Rafael Roquetto <rafael.roquetto@kdab.com>
bb10
Fabian Bumberger 2014-01-13 12:00:10 +01:00 committed by The Qt Project
parent bb9fd68ea7
commit 109e155c3f
1 changed files with 0 additions and 2 deletions

View File

@ -505,7 +505,6 @@ void QQnxScreen::raiseWindow(QQnxWindow *window)
if (window != m_coverWindow) {
removeWindow(window);
m_childWindows.push_back(window);
updateHierarchy();
}
}
@ -516,7 +515,6 @@ void QQnxScreen::lowerWindow(QQnxWindow *window)
if (window != m_coverWindow) {
removeWindow(window);
m_childWindows.push_front(window);
updateHierarchy();
}
}