Skip to content

Commit

Permalink
Cambiando la forma de comparar para cargar/crear los archivos de dato…
Browse files Browse the repository at this point in the history
…s en los distintos idiomas.
  • Loading branch information
Monthy committed Aug 13, 2010
1 parent 52478ac commit 057d3d6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/grlida.cpp
Expand Up @@ -2868,7 +2868,9 @@ void GrLida::ComprobarArchivosDatos(QString Version_GRL, QString lng)
{
QFile archivodatos;

if( lng != "es_ES" || !lng.isEmpty())
if( lng == "es_ES" || lng == "")
stIdioma = "";
else
stIdioma = lng +"/";

if( Version_GRL != fGrl.stVersionGrl() && Version_GRL < fGrl.stVersionGrl() )
Expand Down

0 comments on commit 057d3d6

Please sign in to comment.