Skip to content

Commit

Permalink
Merge pull request #100 from GeertJohan/patch-1
Browse files Browse the repository at this point in the history
Fix innocuous internal naming error.
  • Loading branch information
niemeyer committed Oct 2, 2014
2 parents e55ddbe + 824784c commit f0a005b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qml.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type Engine struct {
values map[interface{}]*valueFold
destroyed bool

imageProviders map[string]*func(providerId string, width, height int) image.Image
imageProviders map[string]*func(imageId string, width, height int) image.Image
}

var engines = make(map[unsafe.Pointer]*Engine)
Expand All @@ -42,7 +42,7 @@ func NewEngine() *Engine {
RunMain(func() {
engine.addr = C.newEngine(nil)
engine.engine = engine
engine.imageProviders = make(map[string]*func(providerId string, width, height int) image.Image)
engine.imageProviders = make(map[string]*func(imageId string, width, height int) image.Image)
engines[engine.addr] = engine
stats.enginesAlive(+1)
})
Expand Down

0 comments on commit f0a005b

Please sign in to comment.