aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/webengine/webengine.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-06-20 20:37:00 +0800
committerobscuren <geffobscura@gmail.com>2015-06-20 20:37:00 +0800
commit42a14b8a09d812dbd7d1b05f145e6881376f320b (patch)
treec3e2ca55a7b67bce4558cdae3ac395568538d76a /ui/qt/webengine/webengine.go
parente4f9ec886b498c5744633a4db1c735eec11dc71b (diff)
downloaddexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.gz
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.bz2
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.lz
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.xz
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.zst
dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.zip
mist: R.I.P.
/"""""/""""""". / / \ __ / / \ || /____ / \ || | | In Loving | || | | Memory | || | | | || | | 2014-2015 | || | | * * * * | _||_ | | *\/* *\/* | | TT | | | *_\_ / ...""""""| || |.""....""""""""."" | | \/.."""""..."""\ || /.""".......""""... | |...."""""""........""""""^^^^"......."""""""".." |......"""""""""""""""........"""""...."""""..""-Jeff W.
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()
- })
-}