* Rename virtualtreeview-unstable to virtualtreeview-new

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@674 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
blikblum
2009-01-25 13:45:09 +00:00
parent 78930629dc
commit 9294036813
184 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,27 @@
program vtbasic;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Main
{$ifdef DEBUG_VTV}
,vtlogger, ipcchannel
{$endif}
;
begin
{$ifdef DEBUG_VTV}
Logger.Channels.Add(TIPCChannel.Create);
Logger.Clear;
Logger.ActiveClasses := [lcScroll, lcWarning];
{$endif}
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.