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, 13 insertions, 0 deletions
diff --git a/DOCS/client_api_examples/qt_opengl/main.cpp b/DOCS/client_api_examples/qt_opengl/main.cpp
new file mode 100644
index 0000000000..086a4b4617
--- /dev/null
+++ b/DOCS/client_api_examples/qt_opengl/main.cpp
@@ -0,0 +1,13 @@
+#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();
+}