Skip to content
Snippets Groups Projects
Commit 060dcb15 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

BUG: catch exception when config file is not found

parent 8455ab72
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,15 @@
#define otbI18nMacro() \
typedef otb::ConfigurationFile ConfigurationType;\
ConfigurationType::Pointer conf = ConfigurationType::GetInstance();\
std::string lang = conf->GetParameter<std::string>("OTB_LANG");\
std::string lang;\
try\
{\
lang = conf->GetParameter<std::string>("OTB_LANG");\
}\
catch(...)\
{\
lang = QUOTEME(OTB_LANG);\
}\
setlocale( LC_MESSAGES, lang.c_str() );\
bindtextdomain( "otb", QUOTEME(OTB_LANG_LOCATION) );\
textdomain( "otb" );\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment