mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 13:04:28 -04:00
antes de a?adir la clase Comic de YACReader a YACReaderLibrary
navegaci?n web con paginaci?n rudimentaria implementada
This commit is contained in:
@ -1,9 +1,12 @@
|
||||
#include "library_window.h"
|
||||
|
||||
#include <QApplication>
|
||||
//#include "startup.h"
|
||||
#include "startup.h"
|
||||
#define PICTUREFLOW_QT4 1
|
||||
|
||||
//interfaz al servidor
|
||||
LibraryWindow * mw;
|
||||
|
||||
int main( int argc, char ** argv )
|
||||
{
|
||||
QApplication app( argc, argv );
|
||||
@ -14,12 +17,12 @@ int main( int argc, char ** argv )
|
||||
app.installTranslator(&translator);
|
||||
app.setApplicationName("YACReaderLibrary");
|
||||
|
||||
QMainWindow * mw = new LibraryWindow();
|
||||
mw = new LibraryWindow();
|
||||
mw->resize(800,480);
|
||||
mw->showMaximized();
|
||||
|
||||
//Startup * s = new Startup();
|
||||
//s->start();
|
||||
Startup * s = new Startup();
|
||||
s->start();
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
|
Reference in New Issue
Block a user