Revision: | 1035 |
Committed: | Thu Mar 24 22:28:41 2016 UTC (9 years, 6 months ago) by s10k |
Content type: | text/x-c++src |
Original Path: | Vago/trunk/Vago/main.cpp |
File size: | 344 byte(s) |
Log Message: | Vago 9.0b |
# | Content |
---|---|
1 | #include <QtWidgets/QApplication> |
2 | #include "mainwindow.h" |
3 | |
4 | int main(int argc, char *argv[]) |
5 | { |
6 | |
7 | QApplication a(argc, argv); |
8 | MainWindow w; |
9 | w.show(); |
10 | a.setStyleSheet("QStatusBar::item { border: 0px; }"); //hide QLabels border in status bar //http://qt-project.org/forums/viewthread/18743 |
11 | |
12 | return a.exec(); |
13 | } |
14 |