From 80458990499b53e9819890d08e19ba332c3218be Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Sat, 17 Jan 2009 12:02:50 +0100 Subject: [PATCH] remove extern keyword from const char * declarations --- src/search_engine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/search_engine.cpp b/src/search_engine.cpp index 0dc4e4ab..cf4c36ef 100644 --- a/src/search_engine.cpp +++ b/src/search_engine.cpp @@ -30,8 +30,8 @@ extern Menu< std::pair > *mSearcher; bool search_match_to_pattern = 1; bool search_case_sensitive = 0; -extern const char *search_mode_normal = "Match if tag contains searched phrase"; -extern const char *search_mode_strict = "Match only if both values are the same"; +const char *search_mode_normal = "Match if tag contains searched phrase"; +const char *search_mode_strict = "Match only if both values are the same"; void SearchEngineDisplayer(const std::pair &pair, void *, Menu< std::pair > *menu) {