| 12 | #include <qapplication.h> |
| 13 | |
| 14 | int main(int argc, char **argv) |
| 15 | { |
| 16 | QApplication app(argc, argv); |
| 17 | |
| 18 | MainWindow mainWindow; |
| 19 | mainWindow.show(); |
| 20 | mainWindow.setWindowTitle(QObject::tr("You can have a chart without having any data at all.")); |
| 21 | |
| 22 | return app.exec(); |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected