Fixed syntax errors

This commit is contained in:
Sasha Koshka 2023-08-12 00:56:13 -04:00
parent e259f122c7
commit 6ced7d1372
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,7 @@
package theme
import "image"
import "git.tebibyte.media/tomo/tomo/data"
// IconSize represents the size of an icon.
type IconSize int; const (
@ -133,7 +134,6 @@ type Icon int; const (
// editing
IconUndo
IconRedo
IconHistory
IconCut
IconCopy
IconPaste
@ -252,7 +252,7 @@ type ApplicationIcon struct {
}
// ApplicationRole describes what an application does.
type ApplicationRole struct {
type ApplicationRole int; const (
RoleUnknown ApplicationRole = iota
RoleWebBrowser
@ -285,4 +285,4 @@ type ApplicationRole struct {
RoleClock
RoleCalendar
RoleChecklist
}
)

View File

@ -1,6 +1,8 @@
package theme
import "image"
import "git.tebibyte.media/tomo/tomo"
import "git.tebibyte.media/tomo/tomo/data"
import "git.tebibyte.media/tomo/tomo/event"
// Role describes the role of an object.