summaryrefslogtreecommitdiffstats
path: root/DOCS/client_api_examples/qt_opengl/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'DOCS/client_api_examples/qt_opengl/main.cpp')
-rw-r--r--DOCS/client_api_examples/qt_opengl/main.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/DOCS/client_api_examples/qt_opengl/main.cpp b/DOCS/client_api_examples/qt_opengl/main.cpp
deleted file mode 100644
index 086a4b4617..0000000000
--- a/DOCS/client_api_examples/qt_opengl/main.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <QApplication>
-#include "mainwindow.h"
-
-int main(int argc, char *argv[])
-{
- QApplication a(argc, argv);
- // Qt sets the locale in the QApplication constructor, but libmpv requires
- // the LC_NUMERIC category to be set to "C", so change it back.
- setlocale(LC_NUMERIC, "C");
- MainWindow w;
- w.show();
- return a.exec();
-}