(svn r12349) -Change[FS#1826]: Remove the need to include the afxres.h header when all that was needed was just the definition if IDC_STATIC.

Only valid for MSVC compilers.
This commit is contained in:
belugas 2008-03-07 02:40:10 +00:00
parent 2c74f39273
commit 82e340c325
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
#ifdef MSVC #ifdef MSVC
#include "winres.h" #include "winres.h"
#else #else
#include "afxres.h" #define IDC_STATIC (-1) // all static controls
#endif #endif
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////