require gcc-4.6 since gcc-4.5.4 produces ICE while compiling bindings.cpp

This commit is contained in:
Andrzej Rybczak
2012-12-14 19:26:54 +01:00
parent 133554bfea
commit b3219f9e34
3 changed files with 28 additions and 17 deletions

View File

@@ -453,7 +453,7 @@ void MediaLibrary::mouseButtonPressed(MEVENT me)
{
auto tryNextColumn = [this]() -> bool {
bool result = true;
if (this->isActiveWindow(Songs))
if (isActiveWindow(Songs))
{
if (nextColumnAvailable())
nextColumn();
@@ -464,7 +464,7 @@ void MediaLibrary::mouseButtonPressed(MEVENT me)
};
auto tryPreviousColumn = [this]() -> bool {
bool result = true;
if (this->isActiveWindow(Tags))
if (isActiveWindow(Tags))
{
if (previousColumnAvailable())
previousColumn();