STR_VALERR had no place in globstr, moved to scstring SCSTR_VALERR
Change-Id: I311918aaacc8b0de32af5bd7fd7e5be146d977e2
This commit is contained in:
parent
4eb1aa5b77
commit
bc131959ad
5 changed files with 10 additions and 12 deletions
|
@ -690,11 +690,6 @@
|
|||
|
||||
#define STR_COUNT 553
|
||||
|
||||
|
||||
// Row fillers
|
||||
#define STR_VALERR 591
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
|
|
@ -954,7 +954,9 @@
|
|||
#define SCSTR_FIELDSEP_TAB (STR_START + 412)
|
||||
#define SCSTR_FIELDSEP_SPACE (STR_START + 413)
|
||||
|
||||
#define STR_END (SCSTR_FIELDSEP_SPACE)
|
||||
#define SCSTR_VALERR (STR_START + 414)
|
||||
|
||||
#define STR_END (SCSTR_VALERR)
|
||||
|
||||
#define BMP_START (STR_END)
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ ScFillSeriesDlg::ScFillSeriesDlg( Window* pParent,
|
|||
sal_uInt16 nPossDir )
|
||||
: ModalDialog(pParent, "FillSeriesDialog", "modules/scalc/ui/filldlg.ui"),
|
||||
aStartStrVal ( aStartStr),
|
||||
aErrMsgInvalidVal( SC_RESSTR(STR_VALERR) ),
|
||||
aErrMsgInvalidVal( SC_RESSTR(SCSTR_VALERR) ),
|
||||
rDoc ( rDocument ),
|
||||
theFillDir ( eFillDir ),
|
||||
theFillCmd ( eFillCmd ),
|
||||
|
|
|
@ -2081,11 +2081,6 @@ Resource RID_GLOBSTR
|
|||
{
|
||||
Text [ en-US ] = "click to open hyperlink:";
|
||||
};
|
||||
String STR_VALERR
|
||||
{
|
||||
Text [ en-US ] = "Invalid value" ;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
|
|
@ -859,4 +859,10 @@ StringArray SCSTR_UNIT
|
|||
< "Point" ; FUNIT_POINT ; > ;
|
||||
};
|
||||
};
|
||||
|
||||
String SCSTR_VALERR
|
||||
{
|
||||
Text [ en-US ] = "Invalid value" ;
|
||||
};
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
|
Loading…
Reference in a new issue