From c376b2ad480772262b6682b0281d2b8209671582 Mon Sep 17 00:00:00 2001 From: Aloshi Date: Sat, 31 May 2014 11:12:11 -0500 Subject: [PATCH] Hopefully fix duplicate symbol error I can't seem to reproduce --- src/components/OptionListComponent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/OptionListComponent.h b/src/components/OptionListComponent.h index 083b3aa58..df19cafe7 100644 --- a/src/components/OptionListComponent.h +++ b/src/components/OptionListComponent.h @@ -43,8 +43,8 @@ private: auto font = Font::get(FONT_SIZE_MEDIUM); ComponentListRow row; - static const char* CHECKED_PATH = ":/checkbox_checked.svg"; - static const char* UNCHECKED_PATH = ":/checkbox_unchecked.svg"; + const char* CHECKED_PATH = ":/checkbox_checked.svg"; + const char* UNCHECKED_PATH = ":/checkbox_unchecked.svg"; // for select all/none std::vector checkboxes;