Skip to content

Commit fb7c03f

Browse files
committed
switched to obscuren/qml
1 parent 9a11a94 commit fb7c03f

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

cmd/mist/debugger.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
"github.com/ethereum/go-ethereum/ethutil"
3333
"github.com/ethereum/go-ethereum/state"
3434
"github.com/ethereum/go-ethereum/vm"
35-
"gopkg.in/qml.v1"
35+
"github.com/obscuren/qml"
3636
)
3737

3838
type DebuggerWindow struct {

cmd/mist/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"fmt"
2525
"os"
2626

27-
"gopkg.in/qml.v1"
27+
"github.com/obscuren/qml"
2828
)
2929

3030
func ErrorWindow(err error) {

cmd/mist/ext_app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"github.com/ethereum/go-ethereum/state"
2828
"github.com/ethereum/go-ethereum/ui/qt"
2929
"github.com/ethereum/go-ethereum/xeth"
30-
"gopkg.in/qml.v1"
30+
"github.com/obscuren/qml"
3131
)
3232

3333
type AppContainer interface {

cmd/mist/gui.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import (
4545
"github.com/ethereum/go-ethereum/p2p"
4646
"github.com/ethereum/go-ethereum/ui/qt/qwhisper"
4747
"github.com/ethereum/go-ethereum/xeth"
48-
"gopkg.in/qml.v1"
48+
"github.com/obscuren/qml"
4949
)
5050

5151
var guilogger = logger.NewLogger("GUI")

cmd/mist/html_container.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
"github.com/ethereum/go-ethereum/state"
3535
"github.com/ethereum/go-ethereum/xeth"
3636
"github.com/howeyc/fsnotify"
37-
"gopkg.in/qml.v1"
37+
"github.com/obscuren/qml"
3838
)
3939

4040
type HtmlApplication struct {

cmd/mist/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"github.com/ethereum/go-ethereum/eth"
3131
"github.com/ethereum/go-ethereum/logger"
3232
"github.com/ethereum/go-ethereum/p2p"
33-
"gopkg.in/qml.v1"
33+
"github.com/obscuren/qml"
3434
)
3535

3636
const (

cmd/mist/qml_container.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"github.com/ethereum/go-ethereum/ethutil"
3030
"github.com/ethereum/go-ethereum/state"
3131
"github.com/ethereum/go-ethereum/xeth"
32-
"gopkg.in/qml.v1"
32+
"github.com/obscuren/qml"
3333
)
3434

3535
type QmlApplication struct {

cmd/mist/ui_lib.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import (
3636
"github.com/ethereum/go-ethereum/javascript"
3737
"github.com/ethereum/go-ethereum/miner"
3838
"github.com/ethereum/go-ethereum/xeth"
39-
"gopkg.in/qml.v1"
39+
"github.com/obscuren/qml"
4040
)
4141

4242
type memAddr struct {

ui/qt/filter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package qt
33
import (
44
"github.com/ethereum/go-ethereum/core"
55
"github.com/ethereum/go-ethereum/ui"
6-
"gopkg.in/qml.v1"
6+
"github.com/obscuren/qml"
77
)
88

99
func NewFilterFromMap(object map[string]interface{}, eth core.EthManager) *core.Filter {

ui/qt/qwhisper/whisper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/ethereum/go-ethereum/ethutil"
88
"github.com/ethereum/go-ethereum/logger"
99
"github.com/ethereum/go-ethereum/whisper"
10-
"gopkg.in/qml.v1"
10+
"github.com/obscuren/qml"
1111
)
1212

1313
var qlogger = logger.NewLogger("QSHH")

0 commit comments

Comments
 (0)