From 3a1175343f0e4b4ff14ceb5b60648307ee2f2128 Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Fri, 14 Sep 2012 17:11:32 +0200 Subject: [PATCH] fix nasty bug related to overlapping names --- src/media_library.cpp | 2 +- src/tag_editor.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/media_library.cpp b/src/media_library.cpp index 25d96119..7db46114 100644 --- a/src/media_library.cpp +++ b/src/media_library.cpp @@ -213,7 +213,7 @@ void MediaLibrary::switchTo() if (hasTwoColumns) { if (w == Tags) - NextColumn(); + nextColumn(); if (Config.titles_visibility) { std::string item_type = lowercase(tagTypeToString(Config.media_lib_primary_tag)); diff --git a/src/tag_editor.cpp b/src/tag_editor.cpp index b260ced0..4e60b4cc 100644 --- a/src/tag_editor.cpp +++ b/src/tag_editor.cpp @@ -992,8 +992,8 @@ void TagEditor::LocateSong(const MPD::Song &s) // and then songs in right column are not visible. TagTypes->reset(); // go to the right column - NextColumn(); - NextColumn(); + nextColumn(); + nextColumn(); // highlight our file for (size_t i = 0; i < Tags->size(); ++i)