mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-23 20:22:58 +03:00
Demo2 fixed
This commit is contained in:
parent
5a185c444d
commit
8061d162dc
@ -4,18 +4,7 @@
|
|||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
QApplication a(argc, argv);
|
QApplication a(argc, argv);
|
||||||
QFile f(":qdarkstyle/style.qss");
|
|
||||||
if (!f.exists())
|
|
||||||
{
|
|
||||||
printf("Unable to set stylesheet, file not found\n");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
f.open(QFile::ReadOnly | QFile::Text);
|
|
||||||
QTextStream ts(&f);
|
|
||||||
a.setStyleSheet(ts.readAll());
|
|
||||||
//a.setStyleSheet("");
|
|
||||||
}
|
|
||||||
MainWindow w;
|
MainWindow w;
|
||||||
w.show();
|
w.show();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user