fpspreadsheet: Make DEFAULT_COL_COUNT and DEFAULT_ROW_COUNT variables (instead of const).

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5561 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2016-12-23 20:52:52 +00:00
parent e22ceab9c9
commit ff50ff842d

View File

@ -728,8 +728,16 @@ type
const
NO_CELL_BORDER: TsCellBorderStyle = (LineStyle: lsThin; Color: scNotDefined);
var
{@@ Default number of columns prepared for a new empty worksheet }
DEFAULT_COL_COUNT: Integer = 26;
{@@ Default number of rows prepared for a new empty worksheet }
DEFAULT_ROW_COUNT: Integer = 100;
procedure Register;
implementation
uses
@ -739,10 +747,6 @@ uses
fpsNumFormat;
const
{@@ Default number of columns prepared for a new empty worksheet }
DEFAULT_COL_COUNT = 26;
{@@ Default number of rows prepared for a new empty worksheet }
DEFAULT_ROW_COUNT = 100;
{@@ Interval how long the mouse buttons has to be held down on a
hyperlink cell until the associated hyperlink is executed. }
HYPERLINK_TIMER_INTERVAL = 500;