Merge with develop

This commit is contained in:
kervala 2016-03-18 22:27:43 +01:00
parent f627729e05
commit 371cba9a84
3 changed files with 2 additions and 6 deletions

View file

@ -382,11 +382,9 @@ std::string CI18N::getSystemLanguageCode ()
} }
} }
#else #else
std::string lang = NLMISC::toLower(lang);
// only keep 2 first characters // only keep 2 first characters
if (lang.size() > 1) if (lang.size() > 1)
_SystemLanguageCode = lang.substr(0, 2); _SystemLanguageCode = NLMISC::toLower(lang).substr(0, 2);
#endif #endif
} }
} }

View file

@ -205,7 +205,7 @@ inline bool CMirroredDataSet::propIsList( TPropertyIndex propIndex ) const
* Display the values of one property for all entities * Display the values of one property for all entities
*/ */
template <class T, class CPropLocationClass> template <class T, class CPropLocationClass>
inline void CMirroredDataSet::displayPropValues( TPropertyIndex propIndex, T* pt, NLMISC::CLog& log ) const inline void CMirroredDataSet::displayPropValues( TPropertyIndex propIndex, T* /* pt */, NLMISC::CLog& log ) const
{ {
// std::stringstream ss; // std::stringstream ss;
// ss << "Mirror property " << propIndex << ":" << endl; // ss << "Mirror property " << propIndex << ":" << endl;

View file

@ -5,8 +5,6 @@
#include "nel/misc/cmd_args.h" #include "nel/misc/cmd_args.h"
#include <locale.h>
#ifdef NL_OS_WINDOWS #ifdef NL_OS_WINDOWS
#include <windows.h> #include <windows.h>
#endif #endif