mirror of https://github.com/icedream/icecon.git
Fix UI code generation using ui2walk.
parent
397d2e90c6
commit
0889e3cac4
|
@ -1,5 +1,4 @@
|
|||
//+build windows
|
||||
//go:generate ui2walk connectdialog.ui
|
||||
|
||||
package main
|
||||
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
//+build windows
|
||||
//go:generate ui2walk dialog.ui
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/lxn/walk"
|
||||
)
|
||||
import "github.com/lxn/walk"
|
||||
|
||||
type mainDialog struct {
|
||||
*walk.MainWindow
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
//+build windows
|
||||
|
||||
package main
|
||||
|
||||
//go:generate ui2walk
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
|
|
Loading…
Reference in New Issue