Updated to latest GTK2 bindings API and moved to Gitlab.

This commit is contained in:
2018-11-10 13:21:53 +05:00
parent 070aa50762
commit 127e1b8ab9
27 changed files with 3347 additions and 3351 deletions

View File

@@ -10,10 +10,10 @@
package cachemodels
import (
// local
"github.com/pztrn/urtrator/datamodels"
// local
"gitlab.com/pztrn/urtrator/datamodels"
)
type Profile struct {
Profile *datamodels.Profile
Profile *datamodels.Profile
}

View File

@@ -10,20 +10,20 @@
package cachemodels
import (
// local
"github.com/pztrn/urtrator/datamodels"
// local
"gitlab.com/pztrn/urtrator/datamodels"
// Other
"github.com/mattn/go-gtk/gtk"
// Other
"github.com/mattn/go-gtk/gtk"
)
type Server struct {
Server *datamodels.Server
AllServersIter *gtk.TreeIter
AllServersIterSet bool
AllServersIterInList bool
Server *datamodels.Server
AllServersIter *gtk.TreeIter
AllServersIterSet bool
AllServersIterInList bool
FavServersIter *gtk.TreeIter
FavServersIterSet bool
FavServersIterInList bool
FavServersIter *gtk.TreeIter
FavServersIterSet bool
FavServersIterInList bool
}