From f1223bfea4d94c8e4d247d07874e472bac41fa55 Mon Sep 17 00:00:00 2001 From: wp_xxyyzz Date: Tue, 1 Jul 2014 07:39:06 +0000 Subject: [PATCH] fpspreadsheet: Rename unit fpsMath to fpsFunc git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3258 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- components/fpspreadsheet/{fpsmath.pas => fpsfunc.pas} | 2 +- components/fpspreadsheet/fpspreadsheet.pas | 2 +- components/fpspreadsheet/laz_fpspreadsheet.lpk | 4 ++-- components/fpspreadsheet/laz_fpspreadsheet.pas | 2 +- components/fpspreadsheet/tests/formulatests.pas | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) rename components/fpspreadsheet/{fpsmath.pas => fpsfunc.pas} (99%) diff --git a/components/fpspreadsheet/fpsmath.pas b/components/fpspreadsheet/fpsfunc.pas similarity index 99% rename from components/fpspreadsheet/fpsmath.pas rename to components/fpspreadsheet/fpsfunc.pas index f4b62bef1..fd069028a 100644 --- a/components/fpspreadsheet/fpsmath.pas +++ b/components/fpspreadsheet/fpsfunc.pas @@ -1,4 +1,4 @@ -unit fpsmath; +unit fpsfunc; {$mode objfpc} diff --git a/components/fpspreadsheet/fpspreadsheet.pas b/components/fpspreadsheet/fpspreadsheet.pas index bcda50b29..4012677f9 100755 --- a/components/fpspreadsheet/fpspreadsheet.pas +++ b/components/fpspreadsheet/fpspreadsheet.pas @@ -992,7 +992,7 @@ procedure MakeLEPalette(APalette: PsPalette; APaletteSize: Integer); implementation uses - Math, StrUtils, TypInfo, fpsUtils, fpsNumFormatParser, fpsMath; + Math, StrUtils, TypInfo, fpsUtils, fpsNumFormatParser, fpsFunc; { Translatable strings } resourcestring diff --git a/components/fpspreadsheet/laz_fpspreadsheet.lpk b/components/fpspreadsheet/laz_fpspreadsheet.lpk index 35ec0d6f1..e91a7eef4 100644 --- a/components/fpspreadsheet/laz_fpspreadsheet.lpk +++ b/components/fpspreadsheet/laz_fpspreadsheet.lpk @@ -108,8 +108,8 @@ This package is all you need if you don't want graphical components (like grids - - + + diff --git a/components/fpspreadsheet/laz_fpspreadsheet.pas b/components/fpspreadsheet/laz_fpspreadsheet.pas index e10b5cc86..009ed7b7e 100644 --- a/components/fpspreadsheet/laz_fpspreadsheet.pas +++ b/components/fpspreadsheet/laz_fpspreadsheet.pas @@ -11,7 +11,7 @@ uses xlsbiff5, xlsbiff8, xlsxooxml, fpsutils, fpszipper, uvirtuallayer_types, uvirtuallayer, uvirtuallayer_ole, uvirtuallayer_ole_helpers, uvirtuallayer_ole_types, uvirtuallayer_stream, fpolebasic, xlscommon, - wikitable, fpsNumFormatParser, fpsmath; + wikitable, fpsNumFormatParser, fpsfunc; implementation diff --git a/components/fpspreadsheet/tests/formulatests.pas b/components/fpspreadsheet/tests/formulatests.pas index ac49f3169..d21c8c317 100644 --- a/components/fpspreadsheet/tests/formulatests.pas +++ b/components/fpspreadsheet/tests/formulatests.pas @@ -13,7 +13,7 @@ uses // Not using Lazarus package as the user may be working with multiple versions // Instead, add .. to unit search path Classes, SysUtils, fpcunit, testutils, testregistry, - fpsallformats, fpspreadsheet, fpsmath, + fpsallformats, fpspreadsheet, fpsfunc, xlsbiff8 {and a project requirement for lclbase for utf8 handling}, testsutility;