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
parent
bb9fd68ea7
commit
109e155c3f
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue