aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/webengine/webengine.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/webengine/webengine.go')
-rw-r--r--ui/qt/webengine/webengine.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/ui/qt/webengine/webengine.go b/ui/qt/webengine/webengine.go
deleted file mode 100644
index 600dbb6cb..000000000
--- a/ui/qt/webengine/webengine.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package webengine
-
-// #cgo CPPFLAGS: -I./
-// #cgo CXXFLAGS: -std=c++0x -pedantic-errors -Wall -fno-strict-aliasing
-// #cgo LDFLAGS: -lstdc++
-// #cgo pkg-config: Qt5WebEngine
-//
-// #include "cpp/webengine.h"
-import "C"
-
-import "github.com/obscuren/qml"
-
-// Initializes the WebEngine extension.
-func Initialize() {
- qml.RunMain(func() {
- C.webengineInitialize()
- })
-}