From 16435f15659bbd36e19d95459e8eed7beff3e98a Mon Sep 17 00:00:00 2001 From: mappu Date: Sat, 28 Sep 2024 14:47:31 +1200 Subject: [PATCH] examples/uidesigner: remove fmt package dependency --- examples/uidesigner/main.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/examples/uidesigner/main.go b/examples/uidesigner/main.go index 3bad42e..730e0c7 100644 --- a/examples/uidesigner/main.go +++ b/examples/uidesigner/main.go @@ -1,20 +1,16 @@ package main import ( - "fmt" "os" "github.com/mappu/miqt/qt" ) func main() { - qt.NewQApplication(os.Args) ui := NewMainWindowUi() ui.MainWindow.Show() qt.QApplication_Exec() - - fmt.Println("OK!") }