|
|
|
@ -104,7 +104,11 @@ static inline QString msgCoreLoadFailure(const QString &why)
|
|
|
|
|
return QCoreApplication::translate("Application", "Failed to load Core plugin: %1").arg(why);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sint main(int argc, char **argv)
|
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
|
int __stdcall WinMain(void *hInstance, void *hPrevInstance, void *lpCmdLine, int nShowCmd)
|
|
|
|
|
#else // NL_OS_WINDOWS
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
|
#endif // NL_OS_WINDOWS
|
|
|
|
|
{
|
|
|
|
|
// go nel!
|
|
|
|
|
new NLMISC::CApplicationContext;
|
|
|
|
@ -129,7 +133,11 @@ sint main(int argc, char **argv)
|
|
|
|
|
nlinfo("Welcome to NeL Object Viewer Qt!");
|
|
|
|
|
}
|
|
|
|
|
QApplication::setGraphicsSystem("raster");
|
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
|
QApplication app(__argc, __argv);
|
|
|
|
|
#else // NL_OS_WINDOWS
|
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
#endif // NL_OS_WINDOWS
|
|
|
|
|
QSplashScreen *splash = new QSplashScreen();
|
|
|
|
|
splash->setPixmap(QPixmap(":/images/nel_ide_load.png"));
|
|
|
|
|
splash->show();
|
|
|
|
|