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
fed8a0b2
Kaydet (Commit)
fed8a0b2
authored
Ara 30, 2013
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Display 3D address & honor current reference address convension.
Change-Id: I0c0f03807ddfadb5b9c17c81eeb86d51c877d4b4
üst
226f4f03
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
datastreamdlg.cxx
sc/source/ui/miscdlgs/datastreamdlg.cxx
+3
-2
No files found.
sc/source/ui/miscdlgs/datastreamdlg.cxx
Dosyayı görüntüle @
fed8a0b2
...
@@ -100,7 +100,7 @@ ScRange DataStreamDlg::GetStartRange()
...
@@ -100,7 +100,7 @@ ScRange DataStreamDlg::GetStartRange()
OUString
aStr
=
m_pEdRange
->
GetText
();
OUString
aStr
=
m_pEdRange
->
GetText
();
ScDocument
*
pDoc
=
mpDocShell
->
GetDocument
();
ScDocument
*
pDoc
=
mpDocShell
->
GetDocument
();
ScRange
aRange
;
ScRange
aRange
;
sal_uInt16
nRes
=
aRange
.
Parse
(
aStr
,
pDoc
);
sal_uInt16
nRes
=
aRange
.
Parse
(
aStr
,
pDoc
,
pDoc
->
GetAddressConvention
()
);
if
((
nRes
&
SCA_VALID
)
!=
SCA_VALID
||
!
aRange
.
IsValid
())
if
((
nRes
&
SCA_VALID
)
!=
SCA_VALID
||
!
aRange
.
IsValid
())
{
{
// Invalid range.
// Invalid range.
...
@@ -118,11 +118,12 @@ ScRange DataStreamDlg::GetStartRange()
...
@@ -118,11 +118,12 @@ ScRange DataStreamDlg::GetStartRange()
void
DataStreamDlg
::
Init
(
const
DataStream
&
rStrm
)
void
DataStreamDlg
::
Init
(
const
DataStream
&
rStrm
)
{
{
m_pCbUrl
->
SetText
(
rStrm
.
GetURL
());
m_pCbUrl
->
SetText
(
rStrm
.
GetURL
());
ScDocument
*
pDoc
=
mpDocShell
->
GetDocument
();
ScRange
aRange
=
rStrm
.
GetRange
();
ScRange
aRange
=
rStrm
.
GetRange
();
ScRange
aTopRange
=
aRange
;
ScRange
aTopRange
=
aRange
;
aTopRange
.
aEnd
.
SetRow
(
aTopRange
.
aStart
.
Row
());
aTopRange
.
aEnd
.
SetRow
(
aTopRange
.
aStart
.
Row
());
OUString
aStr
=
aTopRange
.
Format
(
SC
A_VALID
);
OUString
aStr
=
aTopRange
.
Format
(
SC
R_ABS_3D
,
pDoc
,
pDoc
->
GetAddressConvention
()
);
m_pEdRange
->
SetText
(
aStr
);
m_pEdRange
->
SetText
(
aStr
);
SCROW
nRows
=
aRange
.
aEnd
.
Row
()
-
aRange
.
aStart
.
Row
()
+
1
;
SCROW
nRows
=
aRange
.
aEnd
.
Row
()
-
aRange
.
aStart
.
Row
()
+
1
;
...
...
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