From 7802e5d0b2b726574ef7a7da97d833fb2da02ffd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 28 Jul 2004 14:22:11 +0000 Subject: [PATCH] fixed subrelease test in wxCHECK_VERSION_FULL git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28531 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/version.h b/include/wx/version.h index 40238c289b..1c17042d6b 100644 --- a/include/wx/version.h +++ b/include/wx/version.h @@ -55,7 +55,7 @@ ((major) != wxMAJOR_VERSION || \ (minor) != wxMINOR_VERSION || \ (release) != wxRELEASE_NUMBER || \ - (subrel) >= wxSUBRELEASE_NUMBER) + (subrel) <= wxSUBRELEASE_NUMBER) #endif /* _WX_VERSION_H_ */ -- 2.45.2