Browse Source

* use ufvcommon in udialogs

git-svn-id: branches/unicodekvm@48600 -
nickysn 4 years ago
parent
commit
79aac426fd
2 changed files with 7 additions and 2 deletions
  1. 1 1
      packages/fv/fpmake.pp
  2. 6 1
      packages/fv/src/dialogs.inc

+ 1 - 1
packages/fv/fpmake.pp

@@ -131,7 +131,7 @@ begin
         begin
           AddInclude('dialogs.inc');
           AddInclude('platform.inc');
-          AddUnit('fvcommon');
+          AddUnit('ufvcommon');
           AddUnit('fvconsts');
           AddUnit('udrivers');
           AddUnit('uviews');

+ 6 - 1
packages/fv/src/dialogs.inc

@@ -67,7 +67,12 @@ USES
      OS2Def, DosCalls, PMWIN,                         { Standard units }
    {$ENDIF}
 
-   FVCommon, FVConsts, Objects,                       { Standard GFV units }
+{$ifdef FV_UNICODE}
+   UFVCommon,
+{$else FV_UNICODE}
+   FVCommon,
+{$endif FV_UNICODE}
+   FVConsts, Objects,                       { Standard GFV units }
 {$ifdef FV_UNICODE}
    UDrivers, UViews, UValidate;
 {$else FV_UNICODE}