require gcc-4.6 since gcc-4.5.4 produces ICE while compiling bindings.cpp
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user