Skip to content

Commit d0409ee

Browse files
committed
uses paths fixed
1 parent 7d6d413 commit d0409ee

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.dcu
2+
*.res
3+
*.dproj
4+
*.identcache
5+
*.dproj.local
6+
urls.txt

examples/SelfTest/TestRegExpr.dpr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ program TestRegExpr;
2828

2929

3030
uses
31-
RegExpr;
31+
RegExpr in '..\..\Src\RegExpr.pas';
3232

3333
var
3434
r : TRegExpr;

examples/TRegExprClass/TRegExprClass.dpr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ program TRegExprClass;
33
uses
44
Forms,
55
TRegExprClassMain in 'TRegExprClassMain.pas' {fmTRegExprClassMain},
6-
RegExpr in '..\..\Source\RegExpr.pas';
6+
RegExpr in '..\..\Src\RegExpr.pas';
77

88
{$R *.RES}
99

examples/TRegExprRoutines/TRegExprRoutins.dpr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ program TRegExprRoutins;
33
uses
44
Forms,
55
TRegExprRoutinesMain in 'TRegExprRoutinesMain.pas' {fmTRegExprRoutines},
6-
RegExpr in '..\..\Source\RegExpr.pas';
6+
RegExpr in '..\..\Src\RegExpr.pas';
77

88
{$R *.RES}
99

examples/Text2HTML/Text2HTML.dpr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ program Text2HTML;
33
uses
44
Forms,
55
Text2HTMLMain in 'Text2HTMLMain.pas' {fmText2HTMLMain},
6-
HyperLinksDecorator in '..\..\Source\HyperLinksDecorator.pas';
6+
HyperLinksDecorator in '..\..\Src\HyperLinksDecorator.pas';
77

88
{$R *.RES}
99

0 commit comments

Comments
 (0)