Browse Source

Add comments.

Martijn Laan 1 week ago
parent
commit
aa1368ed15
3 changed files with 7 additions and 1 deletions
  1. 2 0
      Components/NewCheckListBox.pas
  2. 2 0
      Components/NewProgressBar.pas
  3. 3 1
      Components/NewStaticText.pas

+ 2 - 0
Components/NewCheckListBox.pas

@@ -9,6 +9,8 @@ unit NewCheckListBox;
 
   Note: TNewCheckListBox uses Items.Objects to store the item state. Don't use
   Item.Objects yourself, use ItemObject instead.
+
+  Define VCLSTYLES for full VCL Styles support.
 }
 
 interface

+ 2 - 0
Components/NewProgressBar.pas

@@ -12,6 +12,8 @@ unit NewProgressBar;
   This applies both to Position and State. For example if you set State while the
   progress bar is still moving towards a new Position, the new State doesnt show until
   the moving animation has finished.
+
+  Define VCLSTYLES for full VCL Styles support.
 }
 
 interface

+ 3 - 1
Components/NewStaticText.pas

@@ -2,7 +2,9 @@ unit NewStaticText;
 
 {
   TNewStaticText - similar to TStaticText but with multi-line AutoSize
-  support and a WordWrap property, and without a Transparent property
+  support and a WordWrap property, and without a Transparent property.
+
+  Define VCLSTYLES for full VCL Styles support.
 }
 
 interface