From db376a11f6215df8220b68cd43e318c1eb5a24ba Mon Sep 17 00:00:00 2001 From: ask Date: Mon, 2 May 2011 09:16:59 +0000 Subject: [PATCH] TAChart: Add TAChartPrint package git-svn-id: trunk@30524 - --- .gitattributes | 2 ++ components/tachart/tachartprint.lpk | 48 +++++++++++++++++++++++++++++ components/tachart/tachartprint.pas | 20 ++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 components/tachart/tachartprint.lpk create mode 100644 components/tachart/tachartprint.pas diff --git a/.gitattributes b/.gitattributes index f445f94e0c..053111ff29 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2473,6 +2473,8 @@ components/tachart/tachartfpvectorial.lpk svneol=native#text/plain components/tachart/tachartfpvectorial.pas svneol=native#text/pascal components/tachart/tachartlazaruspkg.lpk svneol=native#text/plain components/tachart/tachartlazaruspkg.pas svneol=native#text/plain +components/tachart/tachartprint.lpk svneol=native#text/plain +components/tachart/tachartprint.pas svneol=native#text/pascal components/tachart/tachartutils.pas svneol=native#text/plain components/tachart/tachartwmf.lpk svneol=native#text/plain components/tachart/tachartwmf.pas svneol=native#text/pascal diff --git a/components/tachart/tachartprint.lpk b/components/tachart/tachartprint.lpk new file mode 100644 index 0000000000..0fadade45f --- /dev/null +++ b/components/tachart/tachartprint.lpk @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/components/tachart/tachartprint.pas b/components/tachart/tachartprint.pas new file mode 100644 index 0000000000..802a016f51 --- /dev/null +++ b/components/tachart/tachartprint.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 TAChartPrint; + +interface + +uses + TAPrint, LazarusPackageIntf; + +implementation + +procedure Register; +begin +end; + +initialization + RegisterPackage('TAChartPrint', @Register); +end.