Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
examples: Fix win32 shellfolder.bas to use strptr() instead of @
  • Loading branch information
dkl committed Jan 6, 2015
1 parent 9300b99 commit 88e4de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/GUI/win32/shellfolder.bas
Expand Up @@ -54,7 +54,7 @@ function BrowseForFolder(byval hWnd as HWND, _
with bi
.pidlRoot = pidlStart
.hwndOwner = hWnd
.lpszTitle = @Prompt
.lpszTitle = strptr(Prompt)
.ulFlags = Flags
.lpfn = @BrowseCallbackProc
.lParam = cuint( strptr( sFolder ) )
Expand Down

0 comments on commit 88e4de6

Please sign in to comment.