From 35306ecc53ab9a8c2f7215a0a08d503127036bd8 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Thu, 7 Apr 2011 23:19:10 +0200 Subject: [PATCH] Fix path browsing in WinBoard The routine BrowseForFolder was still declared as static in woptions.c, while it was used from wsettings.c. --- winboard/woptions.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/winboard/woptions.c b/winboard/woptions.c index cf5967d..801fe04 100644 --- a/winboard/woptions.c +++ b/winboard/woptions.c @@ -2829,7 +2829,7 @@ VOID EnginePlayOptionsPopup(HWND hwnd) * UCI Options Dialog functions * \*---------------------------------------------------------------------------*/ -static BOOL BrowseForFolder( const char * title, char * path ) +BOOL BrowseForFolder( const char * title, char * path ) { BOOL result = FALSE; BROWSEINFO bi; -- 1.7.0.4