Compile options and preprocessor variables after completing conversion to Qt
-
wrote on 30 Oct 2024, 09:45 last edited by
The MFC project defined the following pre-processor variables.
UNICODE; _UNICODE; WIN32;_WINDOWS
Do I need any of those now I have completed my conversion to Qt?
-
The MFC project defined the following pre-processor variables.
UNICODE; _UNICODE; WIN32;_WINDOWS
Do I need any of those now I have completed my conversion to Qt?
wrote on 30 Oct 2024, 10:08 last edited by@Perdrix
Probably not, since Qt wraps all of this for you. However you should state clearly whether after your conversion you have left in any Windows code of your own, any#include
of a Windows header file or any vestiges of MFC code yourself? -
wrote on 30 Oct 2024, 11:43 last edited by
Thank you, that's set my mind at ease - all that stuff has been cleaned out with on small exception which is handled without needing those pre-processor settings.
-
1/3