diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-12-14 19:26:54 +0100 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-12-14 19:27:59 +0100 |
commit | b3219f9e34dbbbf63bcd535cc998a223eb8aafb0 (patch) | |
tree | d97f359358d690248c69912758baf39b352ea576 /src/media_library.cpp | |
parent | 133554bfea16a737eac10ee1af00e37aa2fccc17 (diff) |
require gcc-4.6 since gcc-4.5.4 produces ICE while compiling bindings.cpp
Diffstat (limited to 'src/media_library.cpp')
-rw-r--r-- | src/media_library.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/media_library.cpp b/src/media_library.cpp index 99089f94..81580f56 100644 --- a/src/media_library.cpp +++ b/src/media_library.cpp @@ -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(); |