From 88e4de6a59ae0aed026fbd19c4bb26d643f67eb8 Mon Sep 17 00:00:00 2001 From: dkl Date: Tue, 6 Jan 2015 17:59:07 +0100 Subject: [PATCH] examples: Fix win32 shellfolder.bas to use strptr() instead of @ --- examples/GUI/win32/shellfolder.bas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/GUI/win32/shellfolder.bas b/examples/GUI/win32/shellfolder.bas index 9593b7bb0b..84d9018185 100644 --- a/examples/GUI/win32/shellfolder.bas +++ b/examples/GUI/win32/shellfolder.bas @@ -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 ) )