Renamed handleScreenChanged() -> reflowLayout() in the GUI code
svn-id: r23662
This commit is contained in:
parent
ca7880df6c
commit
1a10cacfb9
23 changed files with 60 additions and 60 deletions
|
@ -98,7 +98,7 @@ void Dialog::close() {
|
|||
releaseFocus();
|
||||
}
|
||||
|
||||
void Dialog::handleScreenChanged() {
|
||||
void Dialog::reflowLayout() {
|
||||
// The screen has changed. That means the screen visual may also have
|
||||
// changed, so any cached image may be invalid. The subsequent redraw
|
||||
// should be treated as the very first draw.
|
||||
|
@ -106,12 +106,12 @@ void Dialog::handleScreenChanged() {
|
|||
_drawingHints |= THEME_HINT_FIRST_DRAW;
|
||||
Widget *w = _firstWidget;
|
||||
while (w) {
|
||||
w->handleScreenChanged();
|
||||
w->reflowLayout();
|
||||
w->setHints(THEME_HINT_FIRST_DRAW);
|
||||
w = w->_next;
|
||||
}
|
||||
|
||||
GuiObject::handleScreenChanged();
|
||||
GuiObject::reflowLayout();
|
||||
}
|
||||
|
||||
void Dialog::releaseFocus() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue