local server now runs in a separated thread

This commit is contained in:
Luis Ángel San Martín
2013-08-24 23:25:13 +02:00
parent b684b580ed
commit c96950584f
6 changed files with 20 additions and 5 deletions

View File

@ -52,6 +52,8 @@ int main( int argc, char ** argv )
LibraryWindow * mw = new LibraryWindow();
mw->connect(localServer,SIGNAL(comicUpdated(quint64, const ComicDB &)),mw,SLOT(updateComicsView(quint64, const ComicDB &)));
localServer->start();
//connections to localServer
mw->show();