You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2022/04/03 14:32:55 UTC

[openoffice] branch AOO42X updated (2d960a6 -> 9087e70)

This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a change to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git.


    from 2d960a6  Cleaned up resource files, removed whitespace
     new 6358e47  Cleaned up resource files, removed whitespace
     new 9087e70  Fixed typo (panal -> panel), removed whitespace

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../sidebar/text/TextCharacterSpacingControl.hxx   |  47 ++--
 main/sw/source/ui/misc/linenum.src                 | 182 +++++--------
 main/sw/source/ui/misc/outline.src                 | 158 ++++++-----
 main/sw/source/ui/misc/pggrid.src                  | 301 +++++++++++----------
 4 files changed, 329 insertions(+), 359 deletions(-)

[openoffice] 02/02: Fixed typo (panal -> panel), removed whitespace

Posted by ms...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit 9087e701e1a10afc789bb347e35e630249dbf25c
Author: mseidel <ms...@apache.org>
AuthorDate: Sun Apr 3 16:31:09 2022 +0200

    Fixed typo (panal -> panel), removed whitespace
    
    (cherry picked from commit bca24adc7c19c0a12539b99e0057fa07d24ee29b)
---
 .../sidebar/text/TextCharacterSpacingControl.hxx   | 47 ++++++++++++----------
 1 file changed, 25 insertions(+), 22 deletions(-)

diff --git a/main/svx/source/sidebar/text/TextCharacterSpacingControl.hxx b/main/svx/source/sidebar/text/TextCharacterSpacingControl.hxx
index 8546e2e..17c6e54 100644
--- a/main/svx/source/sidebar/text/TextCharacterSpacingControl.hxx
+++ b/main/svx/source/sidebar/text/TextCharacterSpacingControl.hxx
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,20 +7,23 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
+
+
+
 #ifndef _SVX_SIDEBAR_CHARACTER_SPACING_CONTROL_HXX_
 #define _SVX_SIDEBAR_CHARACTER_SPACING_CONTROL_HXX_
- 
+
 #include "svx/sidebar/PopupControl.hxx"
 #include "svx/sidebar/ValueSetWithTextControl.hxx"
 #include <sfx2/bindings.hxx>
@@ -35,7 +38,7 @@ namespace svx { namespace sidebar {
 #define SPACING_CLOSE_BY_CLICK_ICON		-1
 #define SPACING_CLOSE_BY_CUS_EDIT		1
 
-#define SIDEBAR_SPACING_GLOBAL_VALUE	String("PopupPanal_Spacing", 18, RTL_TEXTENCODING_ASCII_US)
+#define SIDEBAR_SPACING_GLOBAL_VALUE	String("PopupPanel_Spacing", 18, RTL_TEXTENCODING_ASCII_US)
 
 #define SIDEBAR_SPACE_NORMAL	0
 #define SIDEBAR_SPACE_EXPAND	1
@@ -45,21 +48,21 @@ class TextCharacterSpacingControl:public svx::sidebar::PopupControl
 {
 public:
 	TextCharacterSpacingControl (
-        Window* pParent,
-        svx::sidebar::TextPropertyPanel& rPanel,
-        SfxBindings* pBindings);
+		Window* pParent,
+		svx::sidebar::TextPropertyPanel& rPanel,
+		SfxBindings* pBindings);
 	virtual ~TextCharacterSpacingControl();
 	void ToGetFocus();
 	void Rearrange(bool bLBAvailable,bool bAvailable, long nKerning);
-	//virtual void Paint(const Rectangle& rect);
-	
-	//add 
+	// virtual void Paint(const Rectangle& rect);
+
+	// add
 	short GetLastCustomState();
-	long  GetLastCustomValue();
-	//add end
+	long GetLastCustomValue();
+	// add end
 
-private:	
-	svx::sidebar::TextPropertyPanel&     mrTextPropertyPanel;
+private:
+	svx::sidebar::TextPropertyPanel& mrTextPropertyPanel;
 	SfxBindings*		mpBindings;
 
 	ValueSetWithTextControl	maVSSpacing;
@@ -80,20 +83,20 @@ private:
 	Image				maImgCus;
 	Image				maImgCusGrey;
 	XubString			maStrCus;
-	XubString			maStrCusE;		//add 
-	XubString			maStrCusC;		//add 
-	XubString			maStrCusN;		//add 
-	XubString			maStrUnit;		//add 
+	XubString			maStrCusE;		// add
+	XubString			maStrCusC;		// add
+	XubString			maStrCusN;		// add
+	XubString			maStrUnit;		// add
 
 	long				mnCustomKern;
-	short				mnLastCus;		
+	short				mnLastCus;
 	bool				mbCusEnable;
 	bool				mbVS;
 
 	void initial();
 	DECL_LINK(VSSelHdl, void*);
 	DECL_LINK(KerningSelectHdl, ListBox*);
-	DECL_LINK(KerningModifyHdl,  MetricField*);
+	DECL_LINK(KerningModifyHdl, MetricField*);
 };
 }}
 

[openoffice] 01/02: Cleaned up resource files, removed whitespace

Posted by ms...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit 6358e474895e2e73b744ba2fca1c5a0488376b4d
Author: mseidel <ms...@apache.org>
AuthorDate: Sun Apr 3 16:28:31 2022 +0200

    Cleaned up resource files, removed whitespace
    
    (cherry picked from commit d4eab930954f7ec6ab03a12d33b8994e3f2a06c5)
---
 main/sw/source/ui/misc/linenum.src | 182 +++++++++-------------
 main/sw/source/ui/misc/outline.src | 158 ++++++++++---------
 main/sw/source/ui/misc/pggrid.src  | 301 +++++++++++++++++++------------------
 3 files changed, 304 insertions(+), 337 deletions(-)

diff --git a/main/sw/source/ui/misc/linenum.src b/main/sw/source/ui/misc/linenum.src
index a832792..633e340 100644
--- a/main/sw/source/ui/misc/linenum.src
+++ b/main/sw/source/ui/misc/linenum.src
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,20 +7,19 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 
-/* StarView ressource file */
 
 #ifndef _SFX_HRC
 #include <sfx2/sfx.hrc>
@@ -32,6 +31,7 @@
 #include "misc.hrc"
 #include "linenum.hrc"
 #include "helpid.h"
+
 /**************************************************************************/
 /*                                                                        */
 /**************************************************************************/
@@ -40,76 +40,76 @@ TabPage TP_LINENUMBERING
 	HelpID = HID_LINENUMBERING ;
 	SVLook = TRUE ;
 	Hide = TRUE ;
-	Size = MAP_APPFONT ( 260 , 185 ) ;
+	Size = MAP_APPFONT ( 260, 185 ) ;
 	CheckBox CB_NUMBERING_ON
 	{
-	    HelpID = "sw:CheckBox:TP_LINENUMBERING:CB_NUMBERING_ON";
-        Pos = MAP_APPFONT ( 12 , 6 ) ;
-        Size = MAP_APPFONT ( 242 , 8 ) ;
+		HelpID = "sw:CheckBox:TP_LINENUMBERING:CB_NUMBERING_ON" ;
+		Pos = MAP_APPFONT ( 12, 6 ) ;
+		Size = MAP_APPFONT ( 242, 8 ) ;
 		TabStop = TRUE ;
 		Text [ en-US ] = "~Show numbering" ;
 	};
 	FixedText FT_CHAR_STYLE
 	{
-		Pos = MAP_APPFONT ( 12 , 30 ) ;
-		Size = MAP_APPFONT ( 80 , 8 ) ;
+		Pos = MAP_APPFONT ( 12, 30 ) ;
+		Size = MAP_APPFONT ( 80, 8 ) ;
 		Text [ en-US ] = "~Character Style" ;
 	};
 	ListBox LB_CHAR_STYLE
 	{
-	    HelpID = "sw:ListBox:TP_LINENUMBERING:LB_CHAR_STYLE";
-		Pos = MAP_APPFONT ( 100 , 30 ) ;
-		Size = MAP_APPFONT ( 148 , 80 ) ;
+		HelpID = "sw:ListBox:TP_LINENUMBERING:LB_CHAR_STYLE" ;
+		Pos = MAP_APPFONT ( 100, 30 ) ;
+		Size = MAP_APPFONT ( 148, 80 ) ;
 		TabStop = TRUE ;
 		DropDown = TRUE ;
 		Sort = TRUE ;
 	};
 	FixedText FT_FORMAT
 	{
-		Pos = MAP_APPFONT ( 12 , 46 ) ;
-		Size = MAP_APPFONT ( 80 , 8 ) ;
+		Pos = MAP_APPFONT ( 12, 46 ) ;
+		Size = MAP_APPFONT ( 80, 8 ) ;
 		Text [ en-US ] = "F~ormat" ;
 	};
 	ListBox LB_FORMAT
 	{
-	    HelpID = "sw:ListBox:TP_LINENUMBERING:LB_FORMAT";
-		Pos = MAP_APPFONT ( 100 , 44 ) ;
-		Size = MAP_APPFONT ( 148 , 80 ) ;
+		HelpID = "sw:ListBox:TP_LINENUMBERING:LB_FORMAT" ;
+		Pos = MAP_APPFONT ( 100, 44 ) ;
+		Size = MAP_APPFONT ( 148, 80 ) ;
 		TabStop = TRUE ;
 		DropDown = TRUE ;
 	};
 	FixedText FT_POS
 	{
-		Pos = MAP_APPFONT ( 12 , 62 ) ;
-		Size = MAP_APPFONT ( 80 , 8 ) ;
+		Pos = MAP_APPFONT ( 12, 62 ) ;
+		Size = MAP_APPFONT ( 80, 8 ) ;
 		Text [ en-US ] = "Position" ;
 	};
 	ListBox LB_POS
 	{
-	    HelpID = "sw:ListBox:TP_LINENUMBERING:LB_POS";
-		Pos = MAP_APPFONT ( 100 , 60 ) ;
-		Size = MAP_APPFONT ( 148 , 60 ) ;
+		HelpID = "sw:ListBox:TP_LINENUMBERING:LB_POS" ;
+		Pos = MAP_APPFONT ( 100, 60 ) ;
+		Size = MAP_APPFONT ( 148, 60 ) ;
 		TabStop = TRUE ;
 		DropDown = TRUE ;
 		StringList [ en-US ] =
 		{
-			< "Left" ; > ;
-			< "Right" ; > ;
-			< "Inner" ; > ;
-			< "Outer" ; > ;
+			< "Left" ;	> ;
+			< "Right" ;	> ;
+			< "Inner" ;	> ;
+			< "Outer" ;	> ;
 		};
 	};
 	FixedText FT_OFFSET
 	{
-		Pos = MAP_APPFONT ( 12 , 78 ) ;
-		Size = MAP_APPFONT ( 80 , 8 ) ;
+		Pos = MAP_APPFONT ( 12, 78 ) ;
+		Size = MAP_APPFONT ( 80, 8 ) ;
 		Text [ en-US ] = "Spacing" ;
 	};
 	MetricField MF_OFFSET
 	{
-	    HelpID = "sw:MetricField:TP_LINENUMBERING:MF_OFFSET";
-		Pos = MAP_APPFONT ( 100 , 76 ) ;
-		Size = MAP_APPFONT ( 45 , 12 ) ;
+		HelpID = "sw:MetricField:TP_LINENUMBERING:MF_OFFSET" ;
+		Pos = MAP_APPFONT ( 100, 76 ) ;
+		Size = MAP_APPFONT ( 45, 12 ) ;
 		Border = TRUE ;
 		TabStop = TRUE ;
 		Left = TRUE ;
@@ -125,15 +125,15 @@ TabPage TP_LINENUMBERING
 	};
 	FixedText FT_NUM_INVERVAL
 	{
-		Pos = MAP_APPFONT ( 12 , 94 ) ;
-		Size = MAP_APPFONT ( 80 , 8 ) ;
+		Pos = MAP_APPFONT ( 12, 94 ) ;
+		Size = MAP_APPFONT ( 80, 8 ) ;
 		Text [ en-US ] = "Interval" ;
 	};
 	NumericField NF_NUM_INVERVAL
 	{
-	    HelpID = "sw:NumericField:TP_LINENUMBERING:NF_NUM_INVERVAL";
-		Pos = MAP_APPFONT ( 100 , 92 ) ;
-		Size = MAP_APPFONT ( 30 , 12 ) ;
+		HelpID = "sw:NumericField:TP_LINENUMBERING:NF_NUM_INVERVAL" ;
+		Pos = MAP_APPFONT ( 100, 92 ) ;
+		Size = MAP_APPFONT ( 30, 12 ) ;
 		Border = TRUE ;
 		TabStop = TRUE ;
 		Left = TRUE ;
@@ -147,42 +147,42 @@ TabPage TP_LINENUMBERING
 	};
 	FixedText FT_NUM_ROWS
 	{
-		Pos = MAP_APPFONT ( 136 , 94 ) ;
-		Size = MAP_APPFONT ( 80 , 10 ) ;
+		Pos = MAP_APPFONT ( 136, 94 ) ;
+		Size = MAP_APPFONT ( 80, 10 ) ;
 		Text [ en-US ] = "lines" ;
 	};
-    FixedLine FL_DISPLAY
+	FixedLine FL_DISPLAY
 	{
-		Pos = MAP_APPFONT ( 6 , 17 ) ;
-        Size = MAP_APPFONT ( 248 , 8 ) ;
+		Pos = MAP_APPFONT ( 6, 17 ) ;
+		Size = MAP_APPFONT ( 248, 8 ) ;
 		Text [ en-US ] = "View" ;
 	};
 	FixedText FT_DIVISOR
 	{
-		Pos = MAP_APPFONT ( 12 , 123 ) ;
-		Size = MAP_APPFONT ( 30 , 8 ) ;
+		Pos = MAP_APPFONT ( 12, 123 ) ;
+		Size = MAP_APPFONT ( 30, 8 ) ;
 		Text [ en-US ] = "Text" ;
 	};
 	Edit ED_DIVISOR
 	{
-	    HelpID = "sw:Edit:TP_LINENUMBERING:ED_DIVISOR";
-		Pos = MAP_APPFONT ( 45 , 121 ) ;
-		Size = MAP_APPFONT ( 76 , 12 ) ;
+		HelpID = "sw:Edit:TP_LINENUMBERING:ED_DIVISOR" ;
+		Pos = MAP_APPFONT ( 45, 121 ) ;
+		Size = MAP_APPFONT ( 76, 12 ) ;
 		Left = TRUE ;
 		Border = TRUE ;
 	};
 	FixedText FT_DIV_INTERVAL
 	{
-		Pos = MAP_APPFONT ( 12 , 139 ) ;
-		Size = MAP_APPFONT ( 30 , 8 ) ;
-		 //        Disable = TRUE ;
+		Pos = MAP_APPFONT ( 12, 139 ) ;
+		Size = MAP_APPFONT ( 30, 8 ) ;
+//		Disable = TRUE ;
 		Text [ en-US ] = "Every" ;
 	};
 	NumericField NF_DIV_INTERVAL
 	{
-	    HelpID = "sw:NumericField:TP_LINENUMBERING:NF_DIV_INTERVAL";
-		Pos = MAP_APPFONT ( 45 , 137 ) ;
-		Size = MAP_APPFONT ( 30 , 12 ) ;
+		HelpID = "sw:NumericField:TP_LINENUMBERING:NF_DIV_INTERVAL" ;
+		Pos = MAP_APPFONT ( 45, 137 ) ;
+		Size = MAP_APPFONT ( 30, 12 ) ;
 		Border = TRUE ;
 		TabStop = TRUE ;
 		Left = TRUE ;
@@ -193,83 +193,51 @@ TabPage TP_LINENUMBERING
 		First = 0 ;
 		Last = 1000 ;
 		SpinSize = 1 ;
-		 //        Disable = TRUE ;
+//		Disable = TRUE ;
 	};
 	FixedText FT_DIV_ROWS
 	{
-		Pos = MAP_APPFONT ( 78 , 139 ) ;
-		Size = MAP_APPFONT ( 40 , 8 ) ;
+		Pos = MAP_APPFONT ( 78, 139 ) ;
+		Size = MAP_APPFONT ( 40, 8 ) ;
 		Text [ en-US ] = "Lines" ;
 	};
-    FixedLine FL_DIVISOR
+	FixedLine FL_DIVISOR
 	{
-		Pos = MAP_APPFONT ( 6 , 110 ) ;
-        Size = MAP_APPFONT ( 121 , 8 ) ;
+		Pos = MAP_APPFONT ( 6, 110 ) ;
+		Size = MAP_APPFONT ( 121, 8 ) ;
 		Text [ en-US ] = "Separator" ;
 	};
 	CheckBox CB_COUNT_EMPTYLINES
 	{
-	    HelpID = "sw:CheckBox:TP_LINENUMBERING:CB_COUNT_EMPTYLINES";
-		Pos = MAP_APPFONT ( 139 , 121 ) ;
-		Size = MAP_APPFONT ( 110 , 10 ) ;
+		HelpID = "sw:CheckBox:TP_LINENUMBERING:CB_COUNT_EMPTYLINES" ;
+		Pos = MAP_APPFONT ( 139, 121 ) ;
+		Size = MAP_APPFONT ( 110, 10 ) ;
 		TabStop = TRUE ;
 		Text [ en-US ] = "Blank lines" ;
 	};
 	CheckBox CB_COUNT_FRAMELINES
 	{
-	    HelpID = "sw:CheckBox:TP_LINENUMBERING:CB_COUNT_FRAMELINES";
-		Pos = MAP_APPFONT ( 139 , 135 ) ;
-		Size = MAP_APPFONT ( 110 , 10 ) ;
+		HelpID = "sw:CheckBox:TP_LINENUMBERING:CB_COUNT_FRAMELINES" ;
+		Pos = MAP_APPFONT ( 139, 135 ) ;
+		Size = MAP_APPFONT ( 110, 10 ) ;
 		TabStop = TRUE ;
 		Text [ en-US ] = "Lines in text frames" ;
 	};
 	CheckBox CB_RESTART_PAGE
 	{
-	    HelpID = "sw:CheckBox:TP_LINENUMBERING:CB_RESTART_PAGE";
-		Pos = MAP_APPFONT ( 139 , 149 );
-		Size = MAP_APPFONT ( 110 , 10 );
-		TabStop = TRUE;
-		Text [ en-US ] = "~Restart every new page";
+		HelpID = "sw:CheckBox:TP_LINENUMBERING:CB_RESTART_PAGE" ;
+		Pos = MAP_APPFONT ( 139, 149 );
+		Size = MAP_APPFONT ( 110, 10 );
+		TabStop = TRUE ;
+		Text [ en-US ] = "~Restart every new page" ;
 	};
-    FixedLine FL_COUNT
+	FixedLine FL_COUNT
 	{
-		Pos = MAP_APPFONT ( 133 , 110 ) ;
-        Size = MAP_APPFONT ( 121 , 8 ) ;
+		Pos = MAP_APPFONT ( 133, 110 ) ;
+		Size = MAP_APPFONT ( 121, 8 ) ;
 		Text [ en-US ] = "Count" ;
 	};
 	Text [ en-US ] = "Line Numbering" ;
 };
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+// ********************************************************************** EOF
diff --git a/main/sw/source/ui/misc/outline.src b/main/sw/source/ui/misc/outline.src
index 75098d4..dc3dfdd 100644
--- a/main/sw/source/ui/misc/outline.src
+++ b/main/sw/source/ui/misc/outline.src
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 
@@ -26,45 +26,46 @@
 #include "globals.hrc"
 #include "cmdid.h"
 #include "helpid.h"
+
 ModalDialog DLG_NUM_NAMES
 {
 	HelpID = HID_NUM_NAMES ;
 	OutputSize = TRUE ;
 	SVLook = TRUE ;
-	Size = MAP_APPFONT ( 164 , 82 ) ;
-	Text [ en-US ] = "Save As";
+	Size = MAP_APPFONT ( 164, 82 ) ;
+	Text [ en-US ] = "Save As" ;
 	Moveable = TRUE ;
 	OKButton BT_OK
 	{
-		Pos = MAP_APPFONT ( 108 , 6 ) ;
-		Size = MAP_APPFONT ( 50 , 14 ) ;
+		Pos = MAP_APPFONT ( 108, 6 ) ;
+		Size = MAP_APPFONT ( 50, 14 ) ;
 		TabStop = TRUE ;
 		DefButton = TRUE ;
 	};
 	CancelButton BT_CANCEL
 	{
-		Pos = MAP_APPFONT ( 108 , 23 ) ;
-		Size = MAP_APPFONT ( 50 , 14 ) ;
+		Pos = MAP_APPFONT ( 108, 23 ) ;
+		Size = MAP_APPFONT ( 50, 14 ) ;
 		TabStop = TRUE ;
 	};
 	HelpButton BT_HELP
 	{
-		Pos = MAP_APPFONT ( 108 , 43 ) ;
-		Size = MAP_APPFONT ( 50 , 14 ) ;
+		Pos = MAP_APPFONT ( 108, 43 ) ;
+		Size = MAP_APPFONT ( 50, 14 ) ;
 		TabStop = TRUE ;
 	};
-    FixedLine FL_FORM
+	FixedLine FL_FORM
 	{
-		Pos = MAP_APPFONT ( 6 , 3 ) ;
-        Size = MAP_APPFONT ( 96 , 8 ) ;
+		Pos = MAP_APPFONT ( 6, 3 ) ;
+		Size = MAP_APPFONT ( 96, 8 ) ;
 		Text [ en-US ] = "Format" ;
 	};
 	ListBox LB_FORM
 	{
-	    HelpID = "sw:ListBox:DLG_NUM_NAMES:LB_FORM";
+		HelpID = "sw:ListBox:DLG_NUM_NAMES:LB_FORM" ;
 		Border = TRUE ;
-		Pos = MAP_APPFONT ( 12 , 29 ) ;
-		Size = MAP_APPFONT ( 84 , 42 ) ;
+		Pos = MAP_APPFONT ( 12, 29 ) ;
+		Size = MAP_APPFONT ( 84, 42 ) ;
 		TabStop = TRUE ;
 		CurPos = 0 ;
 		StringList [ en-US ] =
@@ -82,27 +83,25 @@ ModalDialog DLG_NUM_NAMES
 	};
 	Edit ED_FORM
 	{
-	    HelpID = "sw:Edit:DLG_NUM_NAMES:ED_FORM";
+		HelpID = "sw:Edit:DLG_NUM_NAMES:ED_FORM" ;
 		Border = TRUE ;
-		Pos = MAP_APPFONT ( 12 , 14 ) ;
-		Size = MAP_APPFONT ( 84 , 12 ) ;
+		Pos = MAP_APPFONT ( 12, 14 ) ;
+		Size = MAP_APPFONT ( 84, 12 ) ;
 		TabStop = TRUE ;
 		Left = TRUE ;
 	};
 };
 /**************************************************************************/
 /*                                                                        */
-/*                                                                        */
-/*                                                                        */
 /**************************************************************************/
 TabDialog DLG_TAB_OUTLINE
 {
 	OutputSize = TRUE ;
 	SVLook = TRUE ;
-    // --> OD 2008-04-14 #outlinelevel#
-    // dialog title is now given by resource STR_OUTLINE_NUMBERING
-//    Text [ en-US ] = "Outline Numbering" ;
-    // <--
+	// --> OD 2008-04-14 #outlinelevel#
+	// dialog title is now given by resource STR_OUTLINE_NUMBERING
+//	Text [ en-US ] = "Outline Numbering" ;
+	// <--
 	Moveable = TRUE ;
 	TabControl 1
 	{
@@ -190,52 +189,50 @@ TabDialog DLG_TAB_OUTLINE
 			MenuItem
 			{
 				Identifier = MN_SAVE ;
-				Text [ en-US ] = "Save ~As...";
+				Text [ en-US ] = "Save ~As..." ;
 				HelpID = HID_NUM_OUTL_NUM_SAVEAS ;
 			};
 		};
 	};
 };
 /**************************************************************************/
-/*                                                                        */
 /* 	TabPage                                                               */
-/*                                                                        */
 /**************************************************************************/
 TabPage TP_OUTLINE_NUM
 {
 	HelpID = HID_TP_OUTLINE_NUM ;
 	SVLook = TRUE ;
-	Size = MAP_APPFONT ( 260 , 185 ) ;
-		Hide = TRUE;
+	Size = MAP_APPFONT ( 260, 185 ) ;
+		Hide = TRUE ;
 	ListBox LB_LEVEL
 	{
-	    HelpID = "sw:ListBox:TP_OUTLINE_NUM:LB_LEVEL";
-		Pos = MAP_APPFONT ( 12 , 14 ) ;
-        Size = MAP_APPFONT ( 23 , 129 ) ;
+		HelpID = "sw:ListBox:TP_OUTLINE_NUM:LB_LEVEL" ;
+		Pos = MAP_APPFONT ( 12, 14 ) ;
+		Size = MAP_APPFONT ( 23, 129 ) ;
 		TabStop = TRUE ;
 		DropDown = FALSE ;
 		Border = TRUE ;
 	};
-    FixedLine FL_LEVEL
+	FixedLine FL_LEVEL
 	{
-		Pos = MAP_APPFONT ( 6 , 3 ) ;
-        Size = MAP_APPFONT ( 32 , 8 ) ;
+		Pos = MAP_APPFONT ( 6, 3 ) ;
+		Size = MAP_APPFONT ( 32, 8 ) ;
 		Text [ en-US ] = "Level" ;
 	};
 	FixedText FT_COLL
 	{
-        Pos = MAP_APPFONT ( 50 , 14 ) ;
-        Size = MAP_APPFONT ( 120 , 8 ) ;
+		Pos = MAP_APPFONT ( 50, 14 ) ;
+		Size = MAP_APPFONT ( 120, 8 ) ;
 		Text [ en-US ] = "~Paragraph Style" ;
 		Group = TRUE ;
 		Left = TRUE ;
 	};
 	ListBox LB_COLL
 	{
-	    HelpID = "sw:ListBox:TP_OUTLINE_NUM:LB_COLL";
+		HelpID = "sw:ListBox:TP_OUTLINE_NUM:LB_COLL" ;
 		Border = TRUE ;
-        Pos = MAP_APPFONT ( 50 , 25 ) ;
-        Size = MAP_APPFONT ( 120 , 75 ) ;
+		Pos = MAP_APPFONT ( 50, 25 ) ;
+		Size = MAP_APPFONT ( 120, 75 ) ;
 		TabStop = TRUE ;
 		Group = TRUE ;
 		Sort = TRUE ;
@@ -244,16 +241,16 @@ TabPage TP_OUTLINE_NUM
 	};
 	FixedText FT_NUMBER
 	{
-        Pos = MAP_APPFONT ( 50 , 43 ) ;
-        Size = MAP_APPFONT ( 52 , 8 ) ;
+		Pos = MAP_APPFONT ( 50, 43 ) ;
+		Size = MAP_APPFONT ( 52, 8 ) ;
 		Text [ en-US ] = "~Number" ;
 		Left = TRUE ;
 	};
 	ListBox LB_NUMBER
 	{
-	    HelpID = "sw:ListBox:TP_OUTLINE_NUM:LB_NUMBER";
-        Pos = MAP_APPFONT ( 104 , 41 ) ;
-        Size = MAP_APPFONT ( 66 , 65 ) ;
+		HelpID = "sw:ListBox:TP_OUTLINE_NUM:LB_NUMBER" ;
+		Pos = MAP_APPFONT ( 104, 41 ) ;
+		Size = MAP_APPFONT ( 66, 65 ) ;
 		TabStop = TRUE ;
 		Group = TRUE ;
 		DropDown = TRUE ;
@@ -261,30 +258,30 @@ TabPage TP_OUTLINE_NUM
 	};
 	FixedText FT_CHARFMT
 	{
-        Pos = MAP_APPFONT ( 50 , 59 ) ;
-        Size = MAP_APPFONT ( 52 , 8 ) ;
+		Pos = MAP_APPFONT ( 50, 59 ) ;
+		Size = MAP_APPFONT ( 52, 8 ) ;
 		Text [ en-US ] = "~Character Style" ;
 	};
 	ListBox LB_CHARFMT
 	{
-	    HelpID = "sw:ListBox:TP_OUTLINE_NUM:LB_CHARFMT";
+		HelpID = "sw:ListBox:TP_OUTLINE_NUM:LB_CHARFMT" ;
 		TabStop = TRUE ;
 		DropDown = TRUE ;
-        Pos = MAP_APPFONT ( 104 , 57 ) ;
-        Size = MAP_APPFONT ( 66 , 65 ) ;
+		Pos = MAP_APPFONT ( 104, 57 ) ;
+		Size = MAP_APPFONT ( 66, 65 ) ;
 	};
 	FixedText FT_ALL_LEVEL
 	{
-        Pos = MAP_APPFONT ( 50 , 75 ) ;
-        Size = MAP_APPFONT ( 52 , 8 ) ;
+		Pos = MAP_APPFONT ( 50, 75 ) ;
+		Size = MAP_APPFONT ( 52, 8 ) ;
 		Text [ en-US ] = "Sho~w sublevels" ;
 	};
 	NumericField NF_ALL_LEVEL
 	{
-	    HelpID = "sw:NumericField:TP_OUTLINE_NUM:NF_ALL_LEVEL";
+		HelpID = "sw:NumericField:TP_OUTLINE_NUM:NF_ALL_LEVEL" ;
 		Border = TRUE ;
-        Pos = MAP_APPFONT ( 104 , 73 ) ;
-        Size = MAP_APPFONT ( 66 , 12 ) ;
+		Pos = MAP_APPFONT ( 104, 73 ) ;
+		Size = MAP_APPFONT ( 66, 12 ) ;
 		TabStop = TRUE ;
 		Left = TRUE ;
 		Repeat = TRUE ;
@@ -297,58 +294,58 @@ TabPage TP_OUTLINE_NUM
 	};
 	FixedText FT_DELIM
 	{
-        Pos = MAP_APPFONT ( 50 , 89 ) ;
-        Size = MAP_APPFONT ( 52 , 8 ) ;
+		Pos = MAP_APPFONT ( 50, 89 ) ;
+		Size = MAP_APPFONT ( 52, 8 ) ;
 		Text [ en-US ] = "Separator" ;
 		Left = TRUE ;
 	};
 	FixedText FT_PREFIX
 	{
-        Pos = MAP_APPFONT ( 56 , 102 ) ;
-        Size = MAP_APPFONT ( 46 , 8 ) ;
+		Pos = MAP_APPFONT ( 56, 102 ) ;
+		Size = MAP_APPFONT ( 46, 8 ) ;
 		Text [ en-US ] = "~Before" ;
 		Left = TRUE ;
 	};
 	Edit ED_PREFIX
 	{
-	    HelpID = "sw:Edit:TP_OUTLINE_NUM:ED_PREFIX";
+		HelpID = "sw:Edit:TP_OUTLINE_NUM:ED_PREFIX" ;
 		Border = TRUE ;
-        Pos = MAP_APPFONT ( 104 , 100 ) ;
-        Size = MAP_APPFONT ( 66 , 12 ) ;
+		Pos = MAP_APPFONT ( 104, 100 ) ;
+		Size = MAP_APPFONT ( 66, 12 ) ;
 		TabStop = TRUE ;
 		Group = TRUE ;
 		Left = TRUE ;
 	};
 	FixedText FT_SUFFIX
 	{
-        Pos = MAP_APPFONT ( 56 , 117 ) ;
-        Size = MAP_APPFONT ( 46 , 8 ) ;
+		Pos = MAP_APPFONT ( 56, 117 ) ;
+		Size = MAP_APPFONT ( 46, 8 ) ;
 		Text [ en-US ] = "~After" ;
 		Left = TRUE ;
 	};
 	Edit ED_SUFFIX
 	{
-	    HelpID = "sw:Edit:TP_OUTLINE_NUM:ED_SUFFIX";
+		HelpID = "sw:Edit:TP_OUTLINE_NUM:ED_SUFFIX" ;
 		Border = TRUE ;
-        Pos = MAP_APPFONT ( 104 , 115 ) ;
-        Size = MAP_APPFONT ( 66 , 12 ) ;
+		Pos = MAP_APPFONT ( 104, 115 ) ;
+		Size = MAP_APPFONT ( 66, 12 ) ;
 		TabStop = TRUE ;
 		Group = TRUE ;
 		Left = TRUE ;
 	};
 	FixedText FT_START
 	{
-        Pos = MAP_APPFONT ( 50 , 133 ) ;
-        Size = MAP_APPFONT ( 52 , 8 ) ;
+		Pos = MAP_APPFONT ( 50, 133 ) ;
+		Size = MAP_APPFONT ( 52, 8 ) ;
 		Text [ en-US ] = "~Start at" ;
 		Left = TRUE ;
 	};
 	NumericField ED_START
 	{
-	    HelpID = "sw:NumericField:TP_OUTLINE_NUM:ED_START";
+		HelpID = "sw:NumericField:TP_OUTLINE_NUM:ED_START" ;
 		Border = TRUE ;
-        Pos = MAP_APPFONT ( 104 , 131 ) ;
-        Size = MAP_APPFONT ( 66 , 12 ) ;
+		Pos = MAP_APPFONT ( 104, 131 ) ;
+		Size = MAP_APPFONT ( 66, 12 ) ;
 		TabStop = TRUE ;
 		Left = TRUE ;
 		Spin = TRUE ;
@@ -359,17 +356,17 @@ TabPage TP_OUTLINE_NUM
 		Last = 99 ;
 		SpinSize = 1 ;
 	};
-    FixedLine FL_NUMBER
+	FixedLine FL_NUMBER
 	{
-        Pos = MAP_APPFONT ( 44 , 3 ) ;
-        Size = MAP_APPFONT ( 210 , 8 ) ;
+		Pos = MAP_APPFONT ( 44, 3 ) ;
+		Size = MAP_APPFONT ( 210, 8 ) ;
 		Text [ en-US ] = "Numbering" ;
 		Group = TRUE ;
 	};
 	Window WIN_PREVIEW
 	{
-		Pos = MAP_APPFONT ( 179 , 14 ) ;
-		Size = MAP_APPFONT ( 72 , 129 ) ;
+		Pos = MAP_APPFONT ( 179, 14 ) ;
+		Size = MAP_APPFONT ( 72, 129 ) ;
 	};
 	String ST_NO_COLL
 	{
@@ -377,3 +374,4 @@ TabPage TP_OUTLINE_NUM
 	};
 };
 
+// ********************************************************************** EOF
diff --git a/main/sw/source/ui/misc/pggrid.src b/main/sw/source/ui/misc/pggrid.src
index 8d1ba9e..5a834c3 100644
--- a/main/sw/source/ui/misc/pggrid.src
+++ b/main/sw/source/ui/misc/pggrid.src
@@ -24,6 +24,7 @@
 #include "globals.hrc"
 #include "pggrid.hrc"
 #include "helpid.h"
+
 TabPage TP_TEXTGRID_PAGE
 {
 	HelpID = HID_TEXTGRID_PAGE ;
@@ -43,182 +44,182 @@ TabPage TP_TEXTGRID_PAGE
 		Size = MAP_APPFONT ( 158, 10 ) ;
 		Text [ en-US ] = "No grid" ;
 	};
-    RadioButton RB_LINESGRID
-    {
-        HelpID = "sw:RadioButton:TP_TEXTGRID_PAGE:RB_LINESGRID" ;
-        Pos = MAP_APPFONT ( 12, 27 ) ;
-        Size = MAP_APPFONT ( 158, 10 ) ;
-        Text [ en-US ] = "Grid (lines only)" ;
-	};
-    RadioButton RB_CHARSGRID
-    {
-        HelpID = "sw:RadioButton:TP_TEXTGRID_PAGE:RB_CHARSGRID" ;
-        Pos = MAP_APPFONT ( 12, 40 ) ;
-        Size = MAP_APPFONT ( 158, 10 ) ;
-        Text [ en-US ] = "Grid (lines and characters)" ;
-	};
-    CheckBox CB_SNAPTOCHARS
-    {
-        HelpID = "sw:CheckBox:TP_TEXTGRID_PAGE:CB_SNAPTOCHARS" ;
-        Pos = MAP_APPFONT ( 14, 53 ) ;
-        Size = MAP_APPFONT ( 158, 10 ) ;
-        Text [ en-US ] = "~Snap to characters" ;
-    };
-    Window WN_EXAMPLE
-    {
-        Pos = MAP_APPFONT ( 176, 6 ) ;
-        Size = MAP_APPFONT ( 75, 46 ) ;
-    };
-    FixedLine FL_LAYOUT
-    {
-        Pos = MAP_APPFONT ( 6, 69 ) ;
-        Size = MAP_APPFONT ( 248, 8 ) ;
-        Text [ en-US ] = "Grid layout" ;
-	};
-    FixedText FT_LINESPERPAGE
-    {
-        Pos = MAP_APPFONT ( 12, 82 ) ;
-        Size = MAP_APPFONT ( 59, 8 ) ;
-        Text [ en-US ] = "Lines per page" ;
-	};
-    NumericField NF_LINESPERPAGE
-    {
-        HelpID = "sw:NumericField:TP_TEXTGRID_PAGE:NF_LINESPERPAGE" ;
-        Pos = MAP_APPFONT ( 74, 80 ) ;
-        Size = MAP_APPFONT ( 25, 12 ) ;
-        Border = TRUE ;
-        TabStop = TRUE ;
+	RadioButton RB_LINESGRID
+	{
+		HelpID = "sw:RadioButton:TP_TEXTGRID_PAGE:RB_LINESGRID" ;
+		Pos = MAP_APPFONT ( 12, 27 ) ;
+		Size = MAP_APPFONT ( 158, 10 ) ;
+		Text [ en-US ] = "Grid (lines only)" ;
+	};
+	RadioButton RB_CHARSGRID
+	{
+		HelpID = "sw:RadioButton:TP_TEXTGRID_PAGE:RB_CHARSGRID" ;
+		Pos = MAP_APPFONT ( 12, 40 ) ;
+		Size = MAP_APPFONT ( 158, 10 ) ;
+		Text [ en-US ] = "Grid (lines and characters)" ;
+	};
+	CheckBox CB_SNAPTOCHARS
+	{
+		HelpID = "sw:CheckBox:TP_TEXTGRID_PAGE:CB_SNAPTOCHARS" ;
+		Pos = MAP_APPFONT ( 14, 53 ) ;
+		Size = MAP_APPFONT ( 158, 10 ) ;
+		Text [ en-US ] = "~Snap to characters" ;
+	};
+	Window WN_EXAMPLE
+	{
+		Pos = MAP_APPFONT ( 176, 6 ) ;
+		Size = MAP_APPFONT ( 75, 46 ) ;
+	};
+	FixedLine FL_LAYOUT
+	{
+		Pos = MAP_APPFONT ( 6, 69 ) ;
+		Size = MAP_APPFONT ( 248, 8 ) ;
+		Text [ en-US ] = "Grid layout" ;
+	};
+	FixedText FT_LINESPERPAGE
+	{
+		Pos = MAP_APPFONT ( 12, 82 ) ;
+		Size = MAP_APPFONT ( 59, 8 ) ;
+		Text [ en-US ] = "Lines per page" ;
+	};
+	NumericField NF_LINESPERPAGE
+	{
+		HelpID = "sw:NumericField:TP_TEXTGRID_PAGE:NF_LINESPERPAGE" ;
+		Pos = MAP_APPFONT ( 74, 80 ) ;
+		Size = MAP_APPFONT ( 25, 12 ) ;
+		Border = TRUE ;
+		TabStop = TRUE ;
 		Left = TRUE ;
 		Repeat = TRUE ;
 		Spin = TRUE ;
 		Minimum = 1 ;
-        Maximum = 154 ;
+		Maximum = 154 ;
 		Value = 1 ;
 		First = 1 ;
-        Last = 154 ;
+		Last = 154 ;
 		SpinSize = 1 ;
-    };
-    FixedText FT_TEXTSIZE
-    {
-        Pos = MAP_APPFONT ( 133, 82 ) ;
-        Size = MAP_APPFONT ( 80, 8 ) ;
-        Text [ en-US ] = "Max. base text size" ;
-	};
-    MetricField MF_TEXTSIZE
-    {
-        HelpID = "sw:MetricField:TP_TEXTGRID_PAGE:MF_TEXTSIZE" ;
-        Pos = MAP_APPFONT ( 216, 80 ) ;
-        Size = MAP_APPFONT ( 35, 12 ) ;
-        Border = TRUE ;
-        TabStop = TRUE ;
+	};
+	FixedText FT_TEXTSIZE
+	{
+		Pos = MAP_APPFONT ( 133, 82 ) ;
+		Size = MAP_APPFONT ( 80, 8 ) ;
+		Text [ en-US ] = "Max. base text size" ;
+	};
+	MetricField MF_TEXTSIZE
+	{
+		HelpID = "sw:MetricField:TP_TEXTGRID_PAGE:MF_TEXTSIZE" ;
+		Pos = MAP_APPFONT ( 216, 80 ) ;
+		Size = MAP_APPFONT ( 35, 12 ) ;
+		Border = TRUE ;
+		TabStop = TRUE ;
 		Left = TRUE ;
 		Repeat = TRUE ;
 		Spin = TRUE ;
-        Minimum = 100 ;
+		Minimum = 100 ;
 		Maximum = 5600 ;
-        DecimalDigits = 2 ;
-        Unit = FUNIT_POINT ;
+		DecimalDigits = 2 ;
+		Unit = FUNIT_POINT ;
 		First = 10 ;
 		Last = 5600 ;
-        SpinSize = 5 ;
-    };
-    FixedText FT_CHARSPERLINE
-    {
-        Pos = MAP_APPFONT ( 12, 98 ) ;
-        Size = MAP_APPFONT ( 59, 8 ) ;
-        Text [ en-US ] = "Characters per line" ;
-	};
-    NumericField NF_CHARSPERLINE
-    {
-        HelpID = "sw:NumericField:TP_TEXTGRID_PAGE:NF_CHARSPERLINE" ;
-        Pos = MAP_APPFONT ( 74, 96 ) ;
-        Size = MAP_APPFONT ( 25, 12 ) ;
-        Border = TRUE ;
-        TabStop = TRUE ;
+		SpinSize = 5 ;
+	};
+	FixedText FT_CHARSPERLINE
+	{
+		Pos = MAP_APPFONT ( 12, 98 ) ;
+		Size = MAP_APPFONT ( 59, 8 ) ;
+		Text [ en-US ] = "Characters per line" ;
+	};
+	NumericField NF_CHARSPERLINE
+	{
+		HelpID = "sw:NumericField:TP_TEXTGRID_PAGE:NF_CHARSPERLINE" ;
+		Pos = MAP_APPFONT ( 74, 96 ) ;
+		Size = MAP_APPFONT ( 25, 12 ) ;
+		Border = TRUE ;
+		TabStop = TRUE ;
 		Left = TRUE ;
 		Repeat = TRUE ;
 		Spin = TRUE ;
 		Minimum = 1 ;
-        Maximum = 233 ;
+		Maximum = 233 ;
 		Value = 1 ;
 		First = 1 ;
-        Last = 233 ;
+		Last = 233 ;
 		SpinSize = 1 ;
-    };
-    FixedText FT_CHARWIDTH
-    {
-        Pos = MAP_APPFONT ( 133, 98 ) ;
-        Size = MAP_APPFONT ( 80, 8 ) ;
-        Text [ en-US ] = "Character ~width" ;
-	};
-    MetricField MF_CHARWIDTH
-    {
-        HelpID = "sw:MetricField:TP_TEXTGRID_PAGE:MF_CHARWIDTH" ;
-        Pos = MAP_APPFONT ( 216, 96 ) ;
-        Size = MAP_APPFONT ( 35, 12 ) ;
-        Border = TRUE ;
-        TabStop = TRUE ;
+	};
+	FixedText FT_CHARWIDTH
+	{
+		Pos = MAP_APPFONT ( 133, 98 ) ;
+		Size = MAP_APPFONT ( 80, 8 ) ;
+		Text [ en-US ] = "Character ~width" ;
+	};
+	MetricField MF_CHARWIDTH
+	{
+		HelpID = "sw:MetricField:TP_TEXTGRID_PAGE:MF_CHARWIDTH" ;
+		Pos = MAP_APPFONT ( 216, 96 ) ;
+		Size = MAP_APPFONT ( 35, 12 ) ;
+		Border = TRUE ;
+		TabStop = TRUE ;
+		Left = TRUE ;
+		Repeat = TRUE ;
+		Spin = TRUE ;
+		Minimum = 100 ;
+		Maximum = 5600 ;
+		DecimalDigits = 2 ;
+		Unit = FUNIT_POINT ;
+		First = 0 ;
+		Last = 5600 ;
+		SpinSize = 5 ;
+	};
+	FixedText FT_RUBYSIZE
+	{
+		Pos = MAP_APPFONT ( 133, 98 ) ;
+		Size = MAP_APPFONT ( 80, 8 ) ;
+		Text [ en-US ] = "Max. Ruby text size" ;
+	};
+	MetricField MF_RUBYSIZE
+	{
+		HelpID = "sw:MetricField:TP_TEXTGRID_PAGE:MF_RUBYSIZE" ;
+		Pos = MAP_APPFONT ( 216, 96 ) ;
+		Size = MAP_APPFONT ( 35, 12 ) ;
+		Border = TRUE ;
+		TabStop = TRUE ;
 		Left = TRUE ;
 		Repeat = TRUE ;
 		Spin = TRUE ;
-        Minimum = 100 ;
+		Minimum = 100 ;
 		Maximum = 5600 ;
-        DecimalDigits = 2 ;
-        Unit = FUNIT_POINT ;
+		DecimalDigits = 2 ;
+		Unit = FUNIT_POINT ;
 		First = 0 ;
 		Last = 5600 ;
-        SpinSize = 5 ;
-    };
-    FixedText FT_RUBYSIZE
-    {
-        Pos = MAP_APPFONT ( 133, 98 ) ;
-        Size = MAP_APPFONT ( 80, 8 ) ;
-        Text [ en-US ] = "Max. Ruby text size" ;
-	};
-    MetricField MF_RUBYSIZE
-    {
-        HelpID = "sw:MetricField:TP_TEXTGRID_PAGE:MF_RUBYSIZE" ;
-        Pos = MAP_APPFONT ( 216, 96 ) ;
-        Size = MAP_APPFONT ( 35, 12 ) ;
-        Border = TRUE ;
-        TabStop = TRUE ;
-        Left = TRUE ;
-        Repeat = TRUE ;
-        Spin = TRUE ;
-        Minimum = 100 ;
-        Maximum = 5600 ;
-        DecimalDigits = 2 ;
-        Unit = FUNIT_POINT ;
-        First = 0 ;
-        Last = 5600 ;
-        SpinSize = 5 ;
-    };
-    CheckBox CB_RUBYBELOW
-    {
-        HelpID = "sw:CheckBox:TP_TEXTGRID_PAGE:CB_RUBYBELOW" ;
-        Pos = MAP_APPFONT ( 14, 112 ) ;
-        Size = MAP_APPFONT ( 237, 10 ) ;
-        Text [ en-US ] = "Ruby text below/left from base text" ;
-	};
-    FixedLine FL_DISPLAY
-    {
-        Pos = MAP_APPFONT ( 6, 128 ) ;
-        Size = MAP_APPFONT ( 248, 8 ) ;
-        Text [ en-US ] = "Grid display" ;
-	};
-    CheckBox CB_DISPLAY
-    {
-        HelpID = "sw:CheckBox:TP_TEXTGRID_PAGE:CB_DISPLAY" ;
-        Pos = MAP_APPFONT ( 12, 139 ) ;
-        Size = MAP_APPFONT ( 118, 10 ) ;
-        Text [ en-US ] = "Display grid" ;
-	};
-    CheckBox CB_PRINT
-    {
-        HelpID = "sw:CheckBox:TP_TEXTGRID_PAGE:CB_PRINT" ;
-        Pos = MAP_APPFONT ( 18, 154 ) ;
-        Size = MAP_APPFONT ( 112, 10 ) ;
-        Text [ en-US ] = "Print grid" ;
+		SpinSize = 5 ;
+	};
+	CheckBox CB_RUBYBELOW
+	{
+		HelpID = "sw:CheckBox:TP_TEXTGRID_PAGE:CB_RUBYBELOW" ;
+		Pos = MAP_APPFONT ( 14, 112 ) ;
+		Size = MAP_APPFONT ( 237, 10 ) ;
+		Text [ en-US ] = "Ruby text below/left from base text" ;
+	};
+	FixedLine FL_DISPLAY
+	{
+		Pos = MAP_APPFONT ( 6, 128 ) ;
+		Size = MAP_APPFONT ( 248, 8 ) ;
+		Text [ en-US ] = "Grid display" ;
+	};
+	CheckBox CB_DISPLAY
+	{
+		HelpID = "sw:CheckBox:TP_TEXTGRID_PAGE:CB_DISPLAY" ;
+		Pos = MAP_APPFONT ( 12, 139 ) ;
+		Size = MAP_APPFONT ( 118, 10 ) ;
+		Text [ en-US ] = "Display grid" ;
+	};
+	CheckBox CB_PRINT
+	{
+		HelpID = "sw:CheckBox:TP_TEXTGRID_PAGE:CB_PRINT" ;
+		Pos = MAP_APPFONT ( 18, 154 ) ;
+		Size = MAP_APPFONT ( 112, 10 ) ;
+		Text [ en-US ] = "Print grid" ;
 	};
 	FixedText FT_COLOR
 	{