diff --git a/sc/inc/globstr.hrc b/sc/inc/globstr.hrc index 2f64f3fccb54..275f7b94ec45 100644 --- a/sc/inc/globstr.hrc +++ b/sc/inc/globstr.hrc @@ -690,11 +690,6 @@ #define STR_COUNT 553 - -// Row fillers -#define STR_VALERR 591 - - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/inc/sc.hrc b/sc/inc/sc.hrc index 3b18b952e294..73d9a15f2b61 100644 --- a/sc/inc/sc.hrc +++ b/sc/inc/sc.hrc @@ -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) diff --git a/sc/source/ui/miscdlgs/filldlg.cxx b/sc/source/ui/miscdlgs/filldlg.cxx index cfca8e861f4a..1e28222655f5 100644 --- a/sc/source/ui/miscdlgs/filldlg.cxx +++ b/sc/source/ui/miscdlgs/filldlg.cxx @@ -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 ), diff --git a/sc/source/ui/src/globstr.src b/sc/source/ui/src/globstr.src index a19f2c8c8f5a..3c57f48dabdd 100644 --- a/sc/source/ui/src/globstr.src +++ b/sc/source/ui/src/globstr.src @@ -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: */ diff --git a/sc/source/ui/src/scstring.src b/sc/source/ui/src/scstring.src index c42c8dffc397..fda6bd8d693c 100644 --- a/sc/source/ui/src/scstring.src +++ b/sc/source/ui/src/scstring.src @@ -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: */