From 330fdb4759297ed071fb66a7ab985c3744bd6009 Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Tue, 17 Feb 2009 19:23:58 +0100 Subject: [PATCH] TinyTagEditor shouldn't return ptr to its List this is for searching, searching in tiny tag editor is useless. --- src/tag_editor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tag_editor.h b/src/tag_editor.h index 86720eed..93b99b67 100644 --- a/src/tag_editor.h +++ b/src/tag_editor.h @@ -46,7 +46,7 @@ class TinyTagEditor : public Screen< Menu > virtual bool allowsSelection() { return false; } - virtual List *GetList() { return w; } + virtual List *GetList() { return 0; } bool SetEdited(MPD::Song *);