From 5b42a56a666fb5b38e508d5ebab703cac19c319e Mon Sep 17 00:00:00 2001 From: ask Date: Sun, 3 Apr 2011 09:32:57 +0000 Subject: [PATCH] TAChart: Add TAChartBgra package git-svn-id: trunk@30148 - --- .gitattributes | 2 + components/tachart/demo/bgra/bgrademo.lpi | 8 +--- components/tachart/demo/bgra/bgrademo.lpr | 3 +- components/tachart/tachartaggpas.lpk | 2 +- components/tachart/tachartbgra.lpk | 48 +++++++++++++++++++++++ components/tachart/tachartbgra.pas | 20 ++++++++++ 6 files changed, 73 insertions(+), 10 deletions(-) create mode 100644 components/tachart/tachartbgra.lpk create mode 100644 components/tachart/tachartbgra.pas diff --git a/.gitattributes b/.gitattributes index b355b86690..ece048a851 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2448,6 +2448,8 @@ components/tachart/icons/tuserdefinedchartsource.png -text svneol=unset#images/p components/tachart/tachartaggpas.lpk svneol=native#text/pascal components/tachart/tachartaggpas.pas svneol=native#text/pascal components/tachart/tachartaxis.pas svneol=native#text/pascal +components/tachart/tachartbgra.lpk svneol=native#text/pascal +components/tachart/tachartbgra.pas svneol=native#text/pascal components/tachart/tachartlazaruspkg.lpk svneol=native#text/plain components/tachart/tachartlazaruspkg.pas svneol=native#text/plain components/tachart/tachartutils.pas svneol=native#text/plain diff --git a/components/tachart/demo/bgra/bgrademo.lpi b/components/tachart/demo/bgra/bgrademo.lpi index eab52bf77a..24ca481441 100644 --- a/components/tachart/demo/bgra/bgrademo.lpi +++ b/components/tachart/demo/bgra/bgrademo.lpi @@ -44,7 +44,7 @@ - + @@ -57,11 +57,6 @@ - - - - - @@ -72,7 +67,6 @@ - diff --git a/components/tachart/demo/bgra/bgrademo.lpr b/components/tachart/demo/bgra/bgrademo.lpr index e82f01d926..2262774efd 100644 --- a/components/tachart/demo/bgra/bgrademo.lpr +++ b/components/tachart/demo/bgra/bgrademo.lpr @@ -8,8 +8,7 @@ uses {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset bgrabitmappack, tachartlazaruspkg, - Forms, Main, tadrawerbgra - { you can add units after this }; + Forms, Main; {$R *.res} diff --git a/components/tachart/tachartaggpas.lpk b/components/tachart/tachartaggpas.lpk index 49913c2a6e..5557b35d66 100644 --- a/components/tachart/tachartaggpas.lpk +++ b/components/tachart/tachartaggpas.lpk @@ -8,7 +8,7 @@ - + diff --git a/components/tachart/tachartbgra.lpk b/components/tachart/tachartbgra.lpk new file mode 100644 index 0000000000..1b053862a1 --- /dev/null +++ b/components/tachart/tachartbgra.lpk @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/components/tachart/tachartbgra.pas b/components/tachart/tachartbgra.pas new file mode 100644 index 0000000000..3334ccf905 --- /dev/null +++ b/components/tachart/tachartbgra.pas @@ -0,0 +1,20 @@ +{ This file was automatically created by Lazarus. Do not edit! + This source is only used to compile and install the package. + } + +unit TAChartBgra; + +interface + +uses + TADrawerBGRA, LazarusPackageIntf; + +implementation + +procedure Register; +begin +end; + +initialization + RegisterPackage('TAChartBgra', @Register); +end.