mirror of
https://github.com/YACReader/yacreader
synced 2025-07-22 06:54:39 -04:00
corregidos algunos problemas en las "webs"
a?adida nueva imagen de fondo para el di?logo sever_config terminado el di?logo server_config
This commit is contained in:
@ -18,8 +18,16 @@ int main( int argc, char ** argv )
|
||||
app.setApplicationName("YACReaderLibrary");
|
||||
|
||||
#ifdef SERVER_RELEASE
|
||||
s = new Startup();
|
||||
s->start();
|
||||
QSettings * settings = new QSettings(QCoreApplication::applicationDirPath()+"/YACReaderLibrary.ini",QSettings::IniFormat); //TODO unificar la creaci<63>n del fichero de config con el servidor
|
||||
settings->beginGroup("libraryConfig");
|
||||
|
||||
s = new Startup();
|
||||
|
||||
if(settings->value(SERVER_ON,true).toBool())
|
||||
{
|
||||
|
||||
s->start();
|
||||
}
|
||||
#endif
|
||||
|
||||
LibraryWindow * mw = new LibraryWindow();
|
||||
|
Reference in New Issue
Block a user