From bb16e81453a02433f2a313037b1c9b62681b45b8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 2 Jan 2002 23:05:22 +0000 Subject: [PATCH] fixed NotMSW flag handling in the common files git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13315 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- distrib/msw/tmake/vc6msw.t | 4 ++-- src/wxWindows.dsp | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/distrib/msw/tmake/vc6msw.t b/distrib/msw/tmake/vc6msw.t index 37dde59591..9a2403be6f 100644 --- a/distrib/msw/tmake/vc6msw.t +++ b/distrib/msw/tmake/vc6msw.t @@ -20,7 +20,7 @@ } foreach $file (sort keys %wxCommon) { - next if $wxCommon{$file} =~ /\b16\b/; + next if $wxCommon{$file} =~ /\b(16|U)\b/; my $tag = $file =~ /\.c$/ ? "WXCSRCS" : "WXCOMMONSRCS"; $project{$tag} .= $file . " " @@ -36,7 +36,7 @@ } foreach $file (sort keys %wxHTML) { - next if $wxHTML{$file} =~ /\b16\b/; + next if $wxHTML{$file} =~ /\b(16|U)\b/; $project{"WXHTMLSRCS"} .= $file . " " } diff --git a/src/wxWindows.dsp b/src/wxWindows.dsp index 87bdde9c82..26d2966709 100644 --- a/src/wxWindows.dsp +++ b/src/wxWindows.dsp @@ -252,10 +252,6 @@ SOURCE=.\common\appcmn.cpp # End Source File # Begin Source File -SOURCE=.\common\bmpbase.cpp -# End Source File -# Begin Source File - SOURCE=.\common\choiccmn.cpp # End Source File # Begin Source File -- 2.45.2