You've already forked lazarus-ccr
jvcllaz: Remove hard-coded backslash from JvTabBar demo
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6332 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -96,9 +96,9 @@ end;
|
|||||||
|
|
||||||
procedure TForm1.FormCreate(Sender: TObject);
|
procedure TForm1.FormCreate(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
OpenDialog1.InitialDir := '..\examples\JvTabBar';
|
OpenDialog1.InitialDir := '..' + PathDelim + 'examples' + PathDelim + 'JvTabBar';
|
||||||
LoadFile('..\examples\JvTabBar\main.pas');
|
LoadFile(OpenDialog1.InitialDir + PathDelim + 'main.pas');
|
||||||
LoadFile('..\examples\JvTabBar\main.lfm');
|
LoadFile(OpenDialog1.InitialDir + PathDelim + 'main.lfm');
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TForm1.FormDestroy(Sender: TObject);
|
procedure TForm1.FormDestroy(Sender: TObject);
|
||||||
|
Reference in New Issue
Block a user