STR_VALERR had no place in globstr, moved to scstring SCSTR_VALERR

Change-Id: I311918aaacc8b0de32af5bd7fd7e5be146d977e2
This commit is contained in:
Eike Rathke 2013-10-30 00:49:37 +01:00
parent 4eb1aa5b77
commit bc131959ad
5 changed files with 10 additions and 12 deletions

View file

@ -690,11 +690,6 @@
#define STR_COUNT 553
// Row fillers
#define STR_VALERR 591
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View file

@ -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)

View file

@ -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 ),

View file

@ -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: */

View file

@ -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: */