fdo#59981 Rearrange Ruler Tab Stops

Per request by user rearranged ruler tab stop order in order to put least used one at the bottom of the list. Previously the order was
Left, Right, Decimal, Center, now it is Left, Right, Center, Decimal

	modified:   include/svtools/ruler.hxx
	modified:   include/svx/dialogs.hrc

	modified:   svx/source/dialog/ruler.src

Change-Id: I1e59dcad4ee476d2d67339e973eedc96f406ec28
Reviewed-on: https://gerrit.libreoffice.org/5381
Reviewed-by: Tor Lillqvist <tml@iki.fi>
Tested-by: Tor Lillqvist <tml@iki.fi>
This commit is contained in:
Joel Madero
2013-08-12 21:42:46 -07:00
committed by Tor Lillqvist
parent 25e23919c8
commit 5a2c13a79a
3 changed files with 9 additions and 8 deletions

View File

@@ -561,8 +561,8 @@ struct RulerIndent
#define RULER_TAB_LEFT ((sal_uInt16)0x0000)
#define RULER_TAB_RIGHT ((sal_uInt16)0x0001)
#define RULER_TAB_DECIMAL ((sal_uInt16)0x0002)
#define RULER_TAB_CENTER ((sal_uInt16)0x0003)
#define RULER_TAB_CENTER ((sal_uInt16)0x0002)
#define RULER_TAB_DECIMAL ((sal_uInt16)0x0003)
#define RULER_TAB_DEFAULT ((sal_uInt16)0x0004)
#define RULER_TAB_STYLE ((sal_uInt16)0x000F)
#define RULER_TAB_RTL ((sal_uInt16)0x0010)

View File

@@ -298,8 +298,9 @@
#define RID_SVXSTR_RULER_START (RID_SVX_START + 245)
#define RID_SVXSTR_RULER_TAB_LEFT (RID_SVX_START + 245)
#define RID_SVXSTR_RULER_TAB_RIGHT (RID_SVX_START + 246)
#define RID_SVXSTR_RULER_TAB_DECIMAL (RID_SVX_START + 247)
#define RID_SVXSTR_RULER_TAB_CENTER (RID_SVX_START + 248)
#define RID_SVXSTR_RULER_TAB_CENTER (RID_SVX_START + 247)
#define RID_SVXSTR_RULER_TAB_DECIMAL (RID_SVX_START + 248)
// Close (in TabDialog line/aria)
#define RID_SVXSTR_CLOSE (RID_SVX_START + 260)

View File

@@ -100,13 +100,13 @@ String RID_SVXSTR_RULER_TAB_RIGHT
{
Text [ en-US ] = "Right" ;
};
String RID_SVXSTR_RULER_TAB_DECIMAL
{
Text [ en-US ] = "Decimal" ;
};
String RID_SVXSTR_RULER_TAB_CENTER
{
Text [ en-US ] = "Center" ;
};
String RID_SVXSTR_RULER_TAB_DECIMAL
{
Text [ en-US ] = "Decimal" ;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */