More go fmt.
This commit is contained in:
parent
37bc89fe52
commit
a3222f248d
|
@ -2,10 +2,6 @@
|
||||||
|
|
||||||
package ui
|
package ui
|
||||||
|
|
||||||
import (
|
|
||||||
// ...
|
|
||||||
)
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
The Cocoa API was not designed to be used directly in code; you were intended to build your user interfaces with Interface Builder. There is no dedicated listbox class; we have to synthesize it with a NSTableView. And this is difficult in code.
|
The Cocoa API was not designed to be used directly in code; you were intended to build your user interfaces with Interface Builder. There is no dedicated listbox class; we have to synthesize it with a NSTableView. And this is difficult in code.
|
||||||
|
|
||||||
|
@ -81,7 +77,6 @@ func listboxArrayItemAt(array C.id, index int) string {
|
||||||
return fromListboxItem(dict)
|
return fromListboxItem(dict)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Now we have to establish the binding. To do this, we need the following things:
|
Now we have to establish the binding. To do this, we need the following things:
|
||||||
- the object to bind (NSTableColumn)
|
- the object to bind (NSTableColumn)
|
||||||
|
|
Loading…
Reference in New Issue