LazMapViewer: Change license to modified LGPL as discussed in https://forum.lazarus.freepascal.org/index.php/topic,49075.0.html. All authors agreed on the license change. License header added to all component files. Set version to 0.2.2 for new OPM release.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7365 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
parent
e67df71726
commit
cac83daa65
@ -4,6 +4,7 @@
|
||||
<PathDelim Value="\"/>
|
||||
<Name Value="lazmapviewer_bgra"/>
|
||||
<Type Value="RunAndDesignTime"/>
|
||||
<Author Value="jc99"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
@ -13,7 +14,8 @@
|
||||
</SearchPaths>
|
||||
</CompilerOptions>
|
||||
<Description Value="Add-on to LazMapViewer: Contains the drawing engine based on the BGRABitmap library."/>
|
||||
<Version Minor="2" Release="1"/>
|
||||
<License Value="modified LGPL with linking exception, like FreePascal RTL/FCL and Lazarus LCL"/>
|
||||
<Version Minor="2" Release="2"/>
|
||||
<Files>
|
||||
<Item>
|
||||
<Filename Value="source\addons\bgra_drawingengine\mvde_bgra.pas"/>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<PathDelim Value="\"/>
|
||||
<Name Value="lazmapviewer_rgbgraphics"/>
|
||||
<Type Value="RunAndDesignTime"/>
|
||||
<Author Value="ti_dic, Werner Pamler"/>
|
||||
<Author Value="ti_dic"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
@ -14,8 +14,8 @@
|
||||
</SearchPaths>
|
||||
</CompilerOptions>
|
||||
<Description Value="Add-on to LazMapViewer: Contains the drawing engine based on the RGBGraphics package."/>
|
||||
<License Value="LGPL 2 or later"/>
|
||||
<Version Minor="2" Release="1"/>
|
||||
<License Value="modified LGPL with linking exception, like FreePascal RTL/FCL and Lazarus LCL"/>
|
||||
<Version Minor="2" Release="2"/>
|
||||
<Files>
|
||||
<Item>
|
||||
<Filename Value="source\addons\rgbgraphics_drawingengine\mvde_rgbgraphics.pas"/>
|
||||
|
@ -14,8 +14,8 @@
|
||||
</SearchPaths>
|
||||
</CompilerOptions>
|
||||
<Description Value="Add-on to LazMapViewer: Contains the download engine based on the Synapse library."/>
|
||||
<License Value="LGPL 2 or later"/>
|
||||
<Version Minor="2" Release="1"/>
|
||||
<License Value="modified LGPL with linking exception, like FreePascal RTL/FCL and Lazarus LCL"/>
|
||||
<Version Minor="2" Release="2"/>
|
||||
<Files>
|
||||
<Item>
|
||||
<Filename Value="source\addons\synapse_downloadengine\mvdlesynapse.pas"/>
|
||||
|
@ -13,8 +13,8 @@
|
||||
</CompilerOptions>
|
||||
<Description Value="Component for viewing maps (Google, OpenStreetMap, etc).
|
||||
This is a fork of MapViewer by ti_dic (https://sourceforge.net/p/roadbook/code/ci/master/tree/mapviewer/) which itself is based on the MapViewer by Maciej Kaczkowski (https://github.com/maciejkaczkowski/mapviewer)."/>
|
||||
<License Value="LGPL 2 or later"/>
|
||||
<Version Minor="2" Release="1"/>
|
||||
<License Value="modified LGPL with linking exception, like FreePascal RTL/FCL and Lazarus LCL"/>
|
||||
<Version Minor="2" Release="2"/>
|
||||
<Files>
|
||||
<Item>
|
||||
<Filename Value="source/mvcache.pas"/>
|
||||
|
@ -1,3 +1,15 @@
|
||||
{
|
||||
Drawing Engine for BGRABitmap library
|
||||
Copyright (C) 2019 user jc99 at Lazarus forum https://forum.lazarus.freepascal.org
|
||||
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvDE_BGRA;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,3 +1,15 @@
|
||||
{
|
||||
Drawing engine for RGBGraphics library
|
||||
(C) 2014 ti_dic@hotmail.com
|
||||
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvDE_RGBGraphics;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,20 +1,13 @@
|
||||
{ Map Viewer Download Engine Synapse
|
||||
|
||||
{
|
||||
Map Viewer Download Engine for Synapse library
|
||||
Copyright (C) 2011 Maciej Kaczkowski / keit.co
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
unit mvDLESynapse;
|
||||
|
||||
|
@ -1,20 +1,15 @@
|
||||
{
|
||||
Picture cache manager (c) 2014 ti_dic
|
||||
Picture cache manager
|
||||
(C) 2014 ti_dic@hotmail.com
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvCache;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,3 +1,14 @@
|
||||
{ Drawing engine based on Lazarus IntfGraphics routines
|
||||
(C) 2014 Werner Pamler (user wp at Lazarus forum https://forum.lazarus.freepascal.org)
|
||||
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvDE_IntfGraphics;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,3 +1,14 @@
|
||||
{ Default drawing engine based on LCL-only routines
|
||||
Copyright (C) 2019 Werner Pamler (user wpat Lazarus forum https://forum.lazarus.freepascal.org)
|
||||
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvDE_LCL;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,24 +1,15 @@
|
||||
{ Map Viewer Download Engine Free Pascal HTTP Client
|
||||
|
||||
Copyright (C) 2011 Maciej Kaczkowski / keit.co
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
|
||||
Taken from:
|
||||
https://forum.lazarus.freepascal.org/index.php/topic,12674.msg160255.html#msg160255
|
||||
|
||||
}
|
||||
|
||||
unit mvDLEFpc;
|
||||
|
@ -1,21 +1,14 @@
|
||||
{ Map Viewer Download Engine
|
||||
|
||||
Copyright (C) 2011 Maciej Kaczkowski / keit.co
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvDownloadEngine;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,20 +1,14 @@
|
||||
{
|
||||
(c) 2014 ti_dic
|
||||
(C) 2014 ti_dic@hotmail.com
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvDragObj;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,3 +1,14 @@
|
||||
{ Mapviewer drawing engine
|
||||
(C) 2019 Werner Pamler (user wp at Lazarus forum https://forum.lazarus.freepascal.org)
|
||||
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvDrawingEngine;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,21 +1,15 @@
|
||||
{
|
||||
(c) 2014 ti_dic
|
||||
(c) 2014 ti_dic@hotmail.com
|
||||
|
||||
Parts of this component are based on :
|
||||
Map Viewer Copyright (C) 2011 Maciej Kaczkowski / keit.co
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,3 +1,12 @@
|
||||
{
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvExtraData;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,21 +1,14 @@
|
||||
{ Map Viewer Geolocation Engine for geonames.org
|
||||
|
||||
Copyright (C) 2011 Maciej Kaczkowski / keit.co
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvGeoNames;
|
||||
|
||||
interface
|
||||
|
@ -1,21 +1,15 @@
|
||||
{ Map Viewer - basic gps object
|
||||
(C) 2014 ti_dic@hotmail.com
|
||||
|
||||
Copyright (C) 2014 ti_dic@hotmail.com
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
}unit mvGpsObj;
|
||||
unit mvGpsObj;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
|
@ -1,4 +1,13 @@
|
||||
{ Reads/writes GPX files }
|
||||
{ Reads/writes GPX files
|
||||
(C) 2019 Werner Pamler (user wp at Lazarus forum https://forum.lazarus.freepascal.org)
|
||||
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvGPX;
|
||||
|
||||
|
@ -1,19 +1,13 @@
|
||||
{
|
||||
Multi thread Queue,witch can be used without multi-thread (c) 2014 ti_dic
|
||||
Multi thread Queue,witch can be used without multi-thread
|
||||
(C) 2014 ti_dic@hotmail.com
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
unit mvJobQueue;
|
||||
|
||||
|
@ -1,20 +1,15 @@
|
||||
{
|
||||
basics jobs for multi-threading(c) 2014 ti_dic
|
||||
basic jobs for multi-threading
|
||||
(C) 2014 ti_dic@hotmail.com
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvJobs;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,20 +1,13 @@
|
||||
{
|
||||
(c) 2014 ti_dic
|
||||
{ (C) 2014 ti_dic@hotmail.com
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvMapProvider;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
@ -1,20 +1,16 @@
|
||||
{ (c) 2014 ti_dic MapViewer component for lazarus
|
||||
Parts of this component are based on :
|
||||
Map Viewer Copyright (C) 2011 Maciej Kaczkowski / keit.co
|
||||
{ Initial map viewer library:
|
||||
Copyright (C) 2011 Maciej Kaczkowski / keit.co
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
Extensions:
|
||||
(C) 2014 ti_dic@hotmail.com
|
||||
(C) 2019 Werner Pamler (user wp at Lazarus forum https://forum.lazarus.freepascal.org
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvMapViewer;
|
||||
|
@ -1,21 +1,10 @@
|
||||
{
|
||||
(c) 2014 ti_dic
|
||||
Parts of this component are based on :
|
||||
Map Viewer Copyright (C) 2011 Maciej Kaczkowski / keit.co
|
||||
License: modified LGPL with linking exception (like RTL, FCL and LCL)
|
||||
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU Library General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or (at your
|
||||
option) any later version.
|
||||
See the file COPYING.modifiedLGPL.txt, included in the Lazarus distribution,
|
||||
for details about the license.
|
||||
|
||||
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. See the GNU Library General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public License
|
||||
along with this library; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
See also: https://wiki.lazarus.freepascal.org/FPC_modified_LGPL
|
||||
}
|
||||
|
||||
unit mvTypes;
|
||||
|
Loading…
Reference in New Issue
Block a user