Browse Source

* use Sw_PString in TStatusItem to avoid an ifdef

git-svn-id: branches/unicodekvm@48743 -
nickysn 4 years ago
parent
commit
83e492235e
1 changed files with 1 additions and 5 deletions
  1. 1 5
      packages/fv/src/menus.inc

+ 1 - 5
packages/fv/src/menus.inc

@@ -152,11 +152,7 @@ TYPE
 {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
    RECORD
      Next: PStatusItem;                               { Next status item }
-{$ifdef FV_UNICODE}
-     Text: UnicodeString;                             { Text of status item }
-{$else FV_UNICODE}
-     Text: PString;                                   { Text of status item }
-{$endif FV_UNICODE}
+     Text: Sw_PString;                                { Text of status item }
      KeyCode: Word;                                   { Keycode of item }
      Command: Word;                                   { Command of item }
    END;