Error window

This commit is contained in:
obscuren 2014-08-22 12:12:53 +02:00
parent 09c7d158d1
commit 77fd361c62
1 changed files with 0 additions and 13 deletions

View File

@ -1,7 +1,6 @@
package main
import (
"fmt"
"os"
"runtime"
@ -31,18 +30,6 @@ func run() error {
db := utils.NewDatabase()
err := utils.DBSanityCheck(db)
if err != nil {
engine := qml.NewEngine()
component, e := engine.LoadString("local", qmlErr)
if e != nil {
fmt.Println("err:", err)
os.Exit(1)
}
win := component.CreateWindow(nil)
win.Root().ObjectByName("label").Set("text", err.Error())
win.Show()
win.Wait()
ErrorWindow(err)
os.Exit(1)
}