File: lazthreadstrconst.pas

package info (click to toggle)
lazarus 4.4%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 276,332 kB
  • sloc: pascal: 2,343,449; xml: 508,730; makefile: 353,085; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (18 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
unit lazthreadstrconst;

{$mode objfpc}{$H+}

interface

resourcestring
  SThreadName = 'Thread Object';
  SThreadDescription = 'A Pascal unit with a subclass of TThread class.';
  SThreadDialogTitle = 'Thread Class Options';
  SOptionsGroupBoxCaption = 'Options';
  SThreadNameLabelCaption = 'Thread Class Name';
  SCreateUnitButtonCaption = 'Create Unit';

implementation

end.