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