0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-01 19:51:30 +03:00
Files
.github
.idea
3rdparty
dark_style_sheet
easyprofiler
light_style_sheet
zint-2.10.0
backend
backend_qt
backend_tcl
cmake
debian
docs
extras
frontend
frontend_qt
images
res
CMakeLists.txt
Inno_Setup_qtzint.iss
barcodeitem.cpp
barcodeitem.h
datawindow.cpp
datawindow.h
exportwindow.cpp
exportwindow.h
extData.ui
extExport.ui
extSequence.ui
frontend_qt.pro
frontend_qt_zintdll.pro
frontend_vc8.pro
grpAztec.ui
grpC11.ui
grpC128.ui
grpC16k.ui
grpC25.ui
grpC39.ui
grpC49.ui
grpChannel.ui
grpCodabar.ui
grpCodablockF.ui
grpCodeOne.ui
grpDAFT.ui
grpDBExtend.ui
grpDM.ui
grpDotCode.ui
grpGrid.ui
grpHX.ui
grpLOGMARS.ui
grpMQR.ui
grpMSICheck.ui
grpMaxicode.ui
grpMicroPDF.ui
grpPDF417.ui
grpQR.ui
grpRMQR.ui
grpUPCA.ui
grpUPCEAN.ui
grpUltra.ui
grpVIN.ui
howto_build_qzint_using_msvs2015.txt
main.cpp
mainWindow.ui
mainwindow.cpp
mainwindow.h
resources.qrc
sequencewindow.cpp
sequencewindow.h
getopt
tools
win32
.editorconfig
.gitignore
CMakeLists.txt
COPYING
ChangeLog
README
SetPaths.cmake
TODO
cmake_uninstall.cmake.in
readme-cmake
zint-qt.desktop
zint-qt.png
zint.nsi
zint.spec
3rdparty.pro
CMakeLists.txt
zint-2.10.0-src.tar.gz
Nouveau dossier
console
demo_r1
demo_r2
designer
designer_plugin
docs
include
limereport
lrdview
tests
translations
.appveyor.yml
.gitignore
.remarkrc
.travis.yml
COPYING
LICENSE
OKQmAj.json
README.md
RolYQr.json
common.pri
common_LOCAL_946.pri
common_REMOTE_946.pri
config.h.in
followTo.patch
limereport.pri
limereport.pro
qzint.pri
rGdIIO.json
LimeReport/3rdparty/zint-2.10.0/frontend_qt/main.cpp
Rodrigo Torres 6822ade01b Update Zint
2022-01-26 09:16:57 -03:00

36 lines
1.5 KiB
C++

/***************************************************************************
* Copyright (C) 2008 by BogDan Vatra <bogdan@licentia.eu> *
* Copyright (C) 2009-2021 by Robin Stuart <rstuart114@gmail.com> *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
/* vim: set ts=4 sw=4 et : */
#include <QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
Q_INIT_RESOURCE(resources);
#if QT_VERSION >= 0x50400
/* Suppresses "Qt WebEngine seems to be initialized from a plugin" warning */
QApplication::setAttribute(Qt::AA_ShareOpenGLContexts);
#endif
QApplication app(argc, argv);
MainWindow w;
w.show();
return app.exec();
}