| 3 | #include <QApplication> |
| 4 | |
| 5 | int main(int argc, char *argv[]) |
| 6 | { |
| 7 | QApplication a(argc, argv); |
| 8 | MainWindow w; |
| 9 | w.setWindowFlag(Qt::FramelessWindowHint); |
| 10 | w.setAttribute(Qt::WA_TranslucentBackground); |
| 11 | w.show(); |
| 12 | return a.exec(); |
| 13 | |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected