Skip to content
Snippets Groups Projects
Commit 0eb96f2e authored by Julien Malik's avatar Julien Malik
Browse files

WRG: add parentheses to keep compiler quiet

parent 9a76d90c
No related branches found
No related tags found
No related merge requests found
......@@ -83,12 +83,12 @@ I18nApplication
QDir build_i18n_dir( bin_dir );
// If build dir is identified...
if( build_i18n_dir.exists( "../i18n" )
if( (build_i18n_dir.exists( "../i18n" )
&& build_i18n_dir.cd( "../i18n" )
&& build_i18n_dir.exists( "../" Monteverdi2_CONFIGURE_FILE )
|| build_i18n_dir.exists( "../../i18n" )
&& build_i18n_dir.exists( "../" Monteverdi2_CONFIGURE_FILE ))
|| (build_i18n_dir.exists( "../../i18n" )
&& build_i18n_dir.cd( "../../i18n" )
&& build_i18n_dir.exists( "../" Monteverdi2_CONFIGURE_FILE ) )
&& build_i18n_dir.exists( "../" Monteverdi2_CONFIGURE_FILE )) )
{
m_IsRunningFromBuildDir = true;
......
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