mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
all: remove commas between enum vals
This commit is contained in:
@ -85,15 +85,15 @@ const (
|
||||
// in the future, maybe we can extend this
|
||||
// to support other mime types
|
||||
enum AtomType {
|
||||
xa_atom = 0, //value 4
|
||||
xa_string = 1, //value 31
|
||||
targets = 2,
|
||||
clipboard = 3,
|
||||
primary = 4,
|
||||
secondary = 5,
|
||||
text = 6,
|
||||
xa_atom = 0 //value 4
|
||||
xa_string = 1 //value 31
|
||||
targets = 2
|
||||
clipboard = 3
|
||||
primary = 4
|
||||
secondary = 5
|
||||
text = 6
|
||||
utf8_string = 7
|
||||
text_plain = 8,
|
||||
text_plain = 8
|
||||
text_html = 9
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user