Kaydet (Commit) 6ff59b03 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

ManageNames: fix tab order in Manage Names

üst f3ee3373
......@@ -55,36 +55,35 @@ class ScDocument;
class ScNameDlg : public ScAnyRefDlg
{
private:
FixedText maFtScope;
FixedText maFtRange;
FixedText maFtName;
ListBox maLbScope;
formula::RefEdit maEdAssign;
Edit maEdName;
formula::RefEdit maEdAssign;
formula::RefButton aRbAssign;
ListBox maLbScope;
FixedLine maFlDiv;
DisclosureButton maBtnMore;
CheckBox maBtnPrintArea;
CheckBox maBtnColHeader;
CheckBox maBtnCriteria;
CheckBox maBtnRowHeader;
ScRangeManagerCtrl maNameMgrCtrl;
ScRangeManagerTable* mpRangeManagerTable;
HelpButton maBtnHelp;
PushButton maBtnAdd;
PushButton maBtnDelete;
PushButton maBtnSelect;
HelpButton maBtnHelp;
PushButton maBtnOk;
PushButton maBtnCancel;
DisclosureButton maBtnMore;
FixedText maFtScope;
FixedText maFtRange;
FixedText maFtName;
FixedLine maFlDiv;
FixedText maFtInfo;
const String mErrMsgInvalidSym;
ScRangeManagerCtrl maNameMgrCtrl;
ScRangeManagerTable* mpRangeManagerTable;
const rtl::OUString maErrMsgModifiedFailed;
const ::rtl::OUString maGlobalNameStr;
const rtl::OUString maGlobalNameStr;
const rtl::OUString maErrInvalidNameStr;
const rtl::OUString maErrNameInUse;
const rtl::OUString maStrInfoDefault;
......
......@@ -72,33 +72,32 @@ ScNameDlg::ScNameDlg( SfxBindings* pB, SfxChildWindow* pCW, Window* pParent,
: ScAnyRefDlg ( pB, pCW, pParent, RID_SCDLG_NAMES ),
//
maFtScope( this, ScResId(FT_SCOPE) ),
maFtRange( this, ScResId(FT_RANGE) ),
maFtName( this, ScResId(FT_NAME) ),
maLbScope( this, ScResId(LB_SCOPE) ),
//
maEdAssign ( this, this, ScResId( ED_ASSIGN ) ),
maEdName ( this, ScResId( ED_NAME2 ) ),
maEdAssign ( this, this, ScResId( ED_ASSIGN ) ),
aRbAssign ( this, ScResId( RB_ASSIGN ), &maEdAssign, this ),
maLbScope( this, ScResId(LB_SCOPE) ),
//
maFlDiv ( this, ScResId( FL_DIV ) ),
maBtnMore ( this, ScResId( BTN_MORE ) ),
maBtnPrintArea ( this, ScResId( BTN_PRINTAREA ) ),
maBtnColHeader ( this, ScResId( BTN_COLHEADER ) ),
maBtnCriteria ( this, ScResId( BTN_CRITERIA ) ),
maBtnRowHeader ( this, ScResId( BTN_ROWHEADER ) ),
//
maNameMgrCtrl ( this, ScResId( CTRL_MANAGENAMES ) ),
//
maBtnHelp ( this, ScResId( BTN_HELP ) ),
maBtnAdd ( this, ScResId( BTN_ADD ) ),
maBtnDelete ( this, ScResId( BTN_DELETE ) ),
maBtnSelect ( this, ScResId( BTN_SELECT ) ),
maBtnHelp ( this, ScResId( BTN_HELP ) ),
maBtnOk ( this, ScResId( BTN_NAME_OK ) ),
maBtnCancel ( this, ScResId( BTN_NAME_CANCEL ) ),
maBtnMore ( this, ScResId( BTN_MORE ) ),
//
maFtScope( this, ScResId(FT_SCOPE) ),
maFtRange( this, ScResId(FT_RANGE) ),
maFtName( this, ScResId(FT_NAME) ),
maFlDiv ( this, ScResId( FL_DIV ) ),
maFtInfo ( this, ScResId( FT_INFO ) ),
//
mErrMsgInvalidSym( ScResId( STR_INVALIDSYMBOL ) ),
maNameMgrCtrl ( this, ScResId( CTRL_MANAGENAMES ) ),
//
maErrMsgModifiedFailed( ResId::toString(ScResId( STR_MODIFYFAILED ) ) ),
maGlobalNameStr ( ScGlobal::GetRscString(STR_GLOBAL_SCOPE) ),
maErrInvalidNameStr( ResId::toString(ScResId(STR_ERR_NAME_INVALID))),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment