Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
ying32 committed Oct 18, 2018
2 parents 8e024b5 + d31ce09 commit ba218d7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tools/res2go/src/uresourceformtogo.pas
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ implementation


const
APPVERSION = '1.0.4';
APPVERSION = '1.0.5';

type
TComponentItem = record
Expand Down
2 changes: 2 additions & 0 deletions samples/winJumpList/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// +build windows

package main

import (
Expand Down
2 changes: 2 additions & 0 deletions samples/winTaskbar/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// +build windows

package main

import (
Expand Down
2 changes: 2 additions & 0 deletions samples/windowsspy/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// +build windows

package main

import (
Expand Down
2 changes: 1 addition & 1 deletion vcl/exts/wke/wke_windows_386.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type TWkeWebBrowser struct {

func NewWkeWebBrowser(hWnd types.HWND) *TWkeWebBrowser {
w := new(TWkeWebBrowser)
r := win.GetClientRect(hWnd)
r, _ := win.GetClientRect2(hWnd)
w.wkePtr = wkeCreateWebWindow(WKE_WINDOW_TYPE_CONTROL, hWnd, 0, 0, r.Right-r.Left, r.Bottom-r.Top)
ptr := uintptr(unsafe.Pointer(w))
wkeOnTitleChanged(w.wkePtr, _wkeTitleChangedCallback, ptr)
Expand Down

0 comments on commit ba218d7

Please sign in to comment.