Skip to content
This repository has been archived by the owner on Jan 25, 2019. It is now read-only.

Commit

Permalink
# Clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
silvioprog committed Jan 4, 2014
1 parent e1a2709 commit 9284361
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion demos/chat/auth.pas → demos/chat/authactns.pas
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
unit Auth;
unit authactns;

{$mode objfpc}{$H+}

Expand Down
8 changes: 4 additions & 4 deletions demos/chat/chat.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@
<Loaded Value="True"/>
</Unit0>
<Unit1>
<Filename Value="chat.pas"/>
<Filename Value="chatactns.pas"/>
<IsPartOfProject Value="True"/>
<UnitName Value="Chat"/>
<UnitName Value="chatactns"/>
<UsageCount Value="20"/>
</Unit1>
<Unit2>
<Filename Value="auth.pas"/>
<Filename Value="authactns.pas"/>
<IsPartOfProject Value="True"/>
<UnitName Value="Auth"/>
<UnitName Value="authactns"/>
<UsageCount Value="20"/>
</Unit2>
<Unit3>
Expand Down
2 changes: 1 addition & 1 deletion demos/chat/chat.lpr
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{$mode objfpc}{$H+}

uses
BrookApplication, Chat, Auth, Brokers;
BrookApplication, chatactns, authactns, Brokers;

begin
BrookApp.Run;
Expand Down
4 changes: 2 additions & 2 deletions demos/chat/chat.pas → demos/chat/chatactns.pas
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
unit Chat;
unit chatactns;

{$mode objfpc}{$H+}

interface

uses
BrookUtils, Auth, RUtils, SysUtils;
BrookUtils, authactns, RUtils, SysUtils;

type

Expand Down

0 comments on commit 9284361

Please sign in to comment.