screen: change ScreenType to WindowType and add WindowReference typedef

This commit is contained in:
Andrzej Rybczak
2012-09-14 17:43:11 +02:00
parent 0d27d6ded3
commit 830a2832b5
12 changed files with 27 additions and 25 deletions

View File

@@ -295,7 +295,7 @@ void PlaylistEditor::mouseButtonPressed(MEVENT me)
}
}
else
Screen<ScreenType>::mouseButtonPressed(me);
Screen<WindowType>::mouseButtonPressed(me);
Content->clear();
}
else if (!Content->empty() && Content->hasCoords(me.x, me.y))
@@ -321,7 +321,7 @@ void PlaylistEditor::mouseButtonPressed(MEVENT me)
enterPressed();
}
else
Screen<ScreenType>::mouseButtonPressed(me);
Screen<WindowType>::mouseButtonPressed(me);
}
}