From: Christophe CURIS <[email protected]>
The function did return a boolean actually as would be expectable
from such function, but its prototype did not use the proper type.
---
WINGs/wfilepanel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/WINGs/wfilepanel.c b/WINGs/wfilepanel.c
index 9e8fdff..3eb04f8 100644
--- a/WINGs/wfilepanel.c
+++ b/WINGs/wfilepanel.c
@@ -475,7 +475,7 @@ static char *get_name_from_path(const char *path)
return wstrdup(&(path[size]));
}
-static int filterFileName(WMFilePanel * panel, const char *file, Bool
isDirectory)
+static Bool filterFileName(WMFilePanel * panel, const char *file, Bool
isDirectory)
{
return True;
}
--
1.7.10.4
--
To unsubscribe, send mail to [email protected].