Fix compilation under MSVC and remove unnecessary conditional function prototype

Thanks to SmallJoker for pointing this out.
This commit is contained in:
kwolekr 2015-10-24 13:31:42 -04:00
parent 127b9aed09
commit 2d207afe8e
3 changed files with 2 additions and 15 deletions

View File

@ -117,12 +117,8 @@ const char* MSVC_LocaleLookup(const char* raw_shortname) {
#endif
/******************************************************************************/
#ifdef _MSC_VER
void init_gettext(const char *path, const std::string &configured_language,
int argc, const char *argv[])
#else
void init_gettext(const char *path, const std::string &configured_language)
#endif
int argc, char *argv[])
{
#if USE_GETTEXT
// First, try to set user override environment

View File

@ -32,12 +32,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define gettext_noop(String) (String)
#define N_(String) gettext_noop((String))
#ifdef _MSC_VER
void init_gettext(const char *path, const std::string &configured_language,
int argc, const char *argv[]);
#else
void init_gettext(const char *path, const std::string &configured_language);
#endif
int argc, char *argv[]);
extern wchar_t *utf8_to_wide_c(const char *str);

View File

@ -450,13 +450,8 @@ static bool init_common(const Settings &cmd_args, int argc, char *argv[])
// Initialize HTTP fetcher
httpfetch_init(g_settings->getS32("curl_parallel_limit"));
#ifdef _MSC_VER
init_gettext(porting::path_locale.c_str(),
g_settings->get("language"), argc, argv);
#else
init_gettext(porting::path_locale.c_str(),
g_settings->get("language"));
#endif
return true;
}