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
9e7e264b
Kaydet (Commit)
9e7e264b
authored
Eki 20, 2015
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
adapt comments to reality
Change-Id: Idfeca4a683ebb9616c19a42de650c4871f733ef5
üst
4e097c10
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
tabvwsh3.cxx
sc/source/ui/view/tabvwsh3.cxx
+6
-6
No files found.
sc/source/ui/view/tabvwsh3.cxx
Dosyayı görüntüle @
9e7e264b
...
@@ -77,17 +77,17 @@ static sal_uInt16 lcl_ParseRange(ScRange& rScRange, const OUString& aAddress, Sc
...
@@ -77,17 +77,17 @@ static sal_uInt16 lcl_ParseRange(ScRange& rScRange, const OUString& aAddress, Sc
if
(
(
nResult
&
SCA_VALID
)
)
if
(
(
nResult
&
SCA_VALID
)
)
return
nResult
;
return
nResult
;
// try the default
calc
address convention
// try the default
Calc (A1)
address convention
nResult
=
rScRange
.
Parse
(
aAddress
,
pDoc
);
nResult
=
rScRange
.
Parse
(
aAddress
,
pDoc
);
if
(
(
nResult
&
SCA_VALID
)
)
if
(
(
nResult
&
SCA_VALID
)
)
return
nResult
;
return
nResult
;
// try the
default calc
address convention
// try the
Excel A1
address convention
nResult
=
rScRange
.
Parse
(
aAddress
,
pDoc
,
formula
::
FormulaGrammar
::
CONV_XL_A1
);
nResult
=
rScRange
.
Parse
(
aAddress
,
pDoc
,
formula
::
FormulaGrammar
::
CONV_XL_A1
);
if
(
(
nResult
&
SCA_VALID
)
)
if
(
(
nResult
&
SCA_VALID
)
)
return
nResult
;
return
nResult
;
// try
excel a1
// try
Excel R1C1 address convention
return
rScRange
.
Parse
(
aAddress
,
pDoc
,
formula
::
FormulaGrammar
::
CONV_XL_R1C1
);
return
rScRange
.
Parse
(
aAddress
,
pDoc
,
formula
::
FormulaGrammar
::
CONV_XL_R1C1
);
}
}
...
@@ -99,17 +99,17 @@ static sal_uInt16 lcl_ParseAddress(ScAddress& rScAddress, const OUString& aAddre
...
@@ -99,17 +99,17 @@ static sal_uInt16 lcl_ParseAddress(ScAddress& rScAddress, const OUString& aAddre
if
(
(
nResult
&
SCA_VALID
)
)
if
(
(
nResult
&
SCA_VALID
)
)
return
nResult
;
return
nResult
;
// try the default
calc
address convention
// try the default
Calc (A1)
address convention
nResult
=
rScAddress
.
Parse
(
aAddress
,
pDoc
);
nResult
=
rScAddress
.
Parse
(
aAddress
,
pDoc
);
if
(
(
nResult
&
SCA_VALID
)
)
if
(
(
nResult
&
SCA_VALID
)
)
return
nResult
;
return
nResult
;
// try the
default calc
address convention
// try the
Excel A1
address convention
nResult
=
rScAddress
.
Parse
(
aAddress
,
pDoc
,
formula
::
FormulaGrammar
::
CONV_XL_A1
);
nResult
=
rScAddress
.
Parse
(
aAddress
,
pDoc
,
formula
::
FormulaGrammar
::
CONV_XL_A1
);
if
(
(
nResult
&
SCA_VALID
)
)
if
(
(
nResult
&
SCA_VALID
)
)
return
nResult
;
return
nResult
;
// try
excel a1
// try
Excel R1C1 address convention
return
rScAddress
.
Parse
(
aAddress
,
pDoc
,
formula
::
FormulaGrammar
::
CONV_XL_R1C1
);
return
rScAddress
.
Parse
(
aAddress
,
pDoc
,
formula
::
FormulaGrammar
::
CONV_XL_R1C1
);
}
}
...
...
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