diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-06-12 13:46:02 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-06-12 13:46:02 (GMT) |
commit | e57d209bdcb092d86bc9e0d2c2d6a0adf229bfc5 (patch) | |
tree | b4f5686701b2cda64422688e7e7df3d5221d4d06 /Source/MFCDialog | |
parent | 344a7cff8d68dbd86f7bd4d5e6bc58b24356054e (diff) | |
download | CMake-e57d209bdcb092d86bc9e0d2c2d6a0adf229bfc5.zip CMake-e57d209bdcb092d86bc9e0d2c2d6a0adf229bfc5.tar.gz CMake-e57d209bdcb092d86bc9e0d2c2d6a0adf229bfc5.tar.bz2 |
fix warning
Diffstat (limited to 'Source/MFCDialog')
-rw-r--r-- | Source/MFCDialog/CMakeSetup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/MFCDialog/CMakeSetup.cpp b/Source/MFCDialog/CMakeSetup.cpp index e0661a0..260dd57 100644 --- a/Source/MFCDialog/CMakeSetup.cpp +++ b/Source/MFCDialog/CMakeSetup.cpp @@ -50,13 +50,13 @@ BOOL CMakeSetup::InitInstance() // If you are not using these features and wish to reduce the size // of your final executable, you should remove from the following // the specific initialization routines you do not need. - +#if _MFC_VER <= 0x421 #ifdef _AFXDLL Enable3dControls(); // Call this when using MFC in a shared DLL #else Enable3dControlsStatic(); // Call this when linking to MFC statically #endif - +#endif CMakeCommandLineInfo cmdInfo; ParseCommandLine(cmdInfo); |