mirror of
https://github.com/YACReader/yacreader
synced 2025-07-21 14:34:42 -04:00
cambiado casting de void * a uint por qint64 (se evita el error ce compilaci?n
al compilar en 64 bit)
This commit is contained in:
25
YACReaderLibrary/main.cpp
Normal file
25
YACReaderLibrary/main.cpp
Normal file
@ -0,0 +1,25 @@
|
||||
#include "library_window.h"
|
||||
|
||||
#include <QApplication>
|
||||
//#include "startup.h"
|
||||
#define PICTUREFLOW_QT4 1
|
||||
|
||||
int main( int argc, char ** argv )
|
||||
{
|
||||
QApplication app( argc, argv );
|
||||
|
||||
QTranslator translator;
|
||||
QString sufix = QLocale::system().name();
|
||||
translator.load(":/yacreaderlibrary_"+sufix);
|
||||
app.installTranslator(&translator);
|
||||
app.setApplicationName("YACReaderLibrary");
|
||||
|
||||
QMainWindow * mw = new LibraryWindow();
|
||||
mw->resize(800,480);
|
||||
mw->showMaximized();
|
||||
|
||||
//Startup * s = new Startup();
|
||||
//s->start();
|
||||
|
||||
return app.exec();
|
||||
}
|
Reference in New Issue
Block a user