Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
6ff59b03
Kaydet (Commit)
6ff59b03
authored
Ara 01, 2011
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ManageNames: fix tab order in Manage Names
üst
f3ee3373
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
26 deletions
+24
-26
namedlg.hxx
sc/source/ui/inc/namedlg.hxx
+13
-14
namedlg.cxx
sc/source/ui/namedlg/namedlg.cxx
+11
-12
No files found.
sc/source/ui/inc/namedlg.hxx
Dosyayı görüntüle @
6ff59b03
...
...
@@ -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
;
...
...
sc/source/ui/namedlg/namedlg.cxx
Dosyayı görüntüle @
6ff59b03
...
...
@@ -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
)
),
//
ma
FlDiv
(
this
,
ScResId
(
FL_DIV
)
),
ma
BtnMore
(
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
))),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment