From bf148ad18995d59b99ffac000f6f2ea08c1aeb54 Mon Sep 17 00:00:00 2001 From: mattias Date: Wed, 18 Sep 2013 15:08:33 +0000 Subject: [PATCH] lcl: clean up git-svn-id: trunk@42863 - --- .gitattributes | 2 - lcl/tests/test7_1anchordocking.lpi | 60 ------------------------------ lcl/tests/test7_1anchordocking.lpr | 52 -------------------------- 3 files changed, 114 deletions(-) delete mode 100644 lcl/tests/test7_1anchordocking.lpi delete mode 100644 lcl/tests/test7_1anchordocking.lpr diff --git a/.gitattributes b/.gitattributes index 4c8eef6dd1..8928248ab4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6792,8 +6792,6 @@ lcl/tests/test5_1asyncprocess.lpr svneol=native#text/plain lcl/tests/test5_1worker.pas svneol=native#text/plain lcl/tests/test6_1masks.lpi svneol=native#text/plain lcl/tests/test6_1masks.lpr svneol=native#text/plain -lcl/tests/test7_1anchordocking.lpi svneol=native#text/plain -lcl/tests/test7_1anchordocking.lpr svneol=native#text/plain lcl/textstrings.pas svneol=native#text/pascal lcl/themes.pas svneol=native#text/pascal lcl/tmschema.pas svneol=native#text/pascal diff --git a/lcl/tests/test7_1anchordocking.lpi b/lcl/tests/test7_1anchordocking.lpi deleted file mode 100644 index 5b4845d314..0000000000 --- a/lcl/tests/test7_1anchordocking.lpi +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - </General> - <PublishOptions> - <Version Value="2"/> - <IgnoreBinaries Value="False"/> - <IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/> - <ExcludeFileFilter Value="*.(bak|ppu|ppw|o|so);*~;backup"/> - </PublishOptions> - <RunParams> - <local> - <FormatVersion Value="1"/> - <LaunchingApplication PathPlusParams="/usr/X11R6/bin/xterm -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/> - </local> - </RunParams> - <RequiredPackages Count="1"> - <Item1> - <PackageName Value="LCL"/> - </Item1> - </RequiredPackages> - <Units Count="1"> - <Unit0> - <Filename Value="test7_1anchordocking.lpr"/> - <IsPartOfProject Value="True"/> - <UnitName Value="test7_1anchordocking"/> - </Unit0> - </Units> - </ProjectOptions> - <CompilerOptions> - <Version Value="5"/> - <SearchPaths> - <LCLWidgetType Value="gtk2"/> - </SearchPaths> - <CodeGeneration> - <Checks> - <IOChecks Value="True"/> - <RangeChecks Value="True"/> - <OverflowChecks Value="True"/> - <StackChecks Value="True"/> - </Checks> - <Generate Value="Faster"/> - </CodeGeneration> - <Other> - <CompilerPath Value="$(CompPath)"/> - </Other> - </CompilerOptions> -</CONFIG> diff --git a/lcl/tests/test7_1anchordocking.lpr b/lcl/tests/test7_1anchordocking.lpr deleted file mode 100644 index 4de05797b8..0000000000 --- a/lcl/tests/test7_1anchordocking.lpr +++ /dev/null @@ -1,52 +0,0 @@ -{ - ***************************************************************************** - * * - * This file is part of the Lazarus Component Library (LCL) * - * * - * See the file COPYING.LCL, included in this distribution, * - * for details about the copyright. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * * - ***************************************************************************** - - LCL Test 7_1 - - Showing a form to test several anchor docking layouts. -} -program test7_1anchordocking; - -{$mode objfpc}{$H+} - -uses - Interfaces, FPCAdds, LCLProc, LCLType, Classes, Controls, Forms, TypInfo, - LMessages, StdCtrls, LDockCtrl; - -type - - { TForm1 } - - TForm1 = class(TForm) - public - constructor Create(TheOwner: TComponent); override; - end; - -constructor TForm1. Create(TheOwner: TComponent); -begin - inherited Create(TheOwner); - - -end; - -{ TForm1 } - -var - Form1: TForm1 = nil; -begin - Application.Initialize; - Application.CreateForm(TForm1,Form1); - Application.Run; -end. -