Skip to content

Commit

Permalink
#38 - WindInfy: Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hoppfrosch committed Jan 12, 2016
1 parent decb3db commit 1ab429a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Examples/WindInfy/WindInfy_Demo01_Basic.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ o := WindInfy.fromWindy(oWindy)

MsgBox % o.toJson()

oWindy.kill()

ExitApp
4 changes: 2 additions & 2 deletions lib/Windy/WindInfy.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class WindInfy {
oWindInfy := new WindInfy()
oWindInfy.classname := oWindy.classname
oWindInfy.processname := oWindy.processname
pid := oWindy.processID
oWindInfy.processfullpath := WindInfy._GetModuleFileNameEx(pid)
oWindInfy.pid := oWindy.processID
oWindInfy.processfullpath := WindInfy._GetModuleFileNameEx(oWindy.processID)
oWindInfy.style := oWindy.style
oWindInfy.styleEx := oWindy.styleEx
oWindInfy.rolledUp := oWindy.rolledUp
Expand Down
3 changes: 2 additions & 1 deletion lib/Windy/Windy.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,8 @@ class Windy {
bFixStyle - Set to TRUE to fix WS_CHILD & WS_POPUP styles. SetParent does not modify the WS_CHILD or WS_POPUP window styles of the window whose parent is being changed. If hwndPar is 0, you should also clear the WS_CHILD bit and set the WS_POPUP style after calling SetParent (and vice-versa).
Returns:
If the function succeeds, the return value is a handle to the previous parent window. Otherwise, its 0.
get(): Handle of parent window
set():: If the function succeeds, the return value is a handle to the previous parent window. Otherwise, its 0.
Remarks:
* If the current window identified by the hwnd parameter is visible, the system performs the appropriate redrawing and repainting.
Expand Down

0 comments on commit 1ab429a

Please sign in to comment.