From 83d56dd128b06510d3141857371ca4e0c1cb75e9 Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Sat, 22 Nov 2008 15:56:26 +0000 Subject: [PATCH] give a name to the enum to make it easier to reference it in docs; wxFSVolume shouldn't be considered incomplete anymore git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56911 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/chkconf.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/wx/chkconf.h b/include/wx/chkconf.h index 9e7dc854b2..35c988dbb8 100644 --- a/include/wx/chkconf.h +++ b/include/wx/chkconf.h @@ -108,9 +108,12 @@ # endif #endif /* !defined(wxUSE_FS_ARCHIVE) */ -/* don't give an error about this one yet, it's not fully implemented */ #ifndef wxUSE_FSVOLUME -# define wxUSE_FSVOLUME 0 +# ifdef wxABORT_ON_CONFIG_ERROR +# error "wxUSE_FSVOLUME must be defined." +# else +# define wxUSE_FSVOLUME 0 +# endif #endif /* !defined(wxUSE_FSVOLUME) */ #ifndef wxUSE_DYNAMIC_LOADER -- 2.45.2