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
6dbd8a36
Kaydet (Commit)
6dbd8a36
authored
Şub 12, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool->bool
Change-Id: I163bedc8f4e483f28233c54f2fa77c9bc5352a4f
üst
ed5b2489
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
lotrange.hxx
sc/source/filter/inc/lotrange.hxx
+6
-6
No files found.
sc/source/filter/inc/lotrange.hxx
Dosyayı görüntüle @
6dbd8a36
...
...
@@ -48,9 +48,9 @@ public:
LotusRange
(
SCCOL
nColS
,
SCROW
nRowS
,
SCCOL
nColE
,
SCROW
nRowE
);
LotusRange
(
const
LotusRange
&
);
inline
LotusRange
&
operator
=
(
const
LotusRange
&
);
inline
sal_B
ool
operator
==
(
const
LotusRange
&
)
const
;
inline
sal_B
ool
operator
!=
(
const
LotusRange
&
)
const
;
inline
sal_B
ool
IsSingle
(
void
)
const
;
inline
b
ool
operator
==
(
const
LotusRange
&
)
const
;
inline
b
ool
operator
!=
(
const
LotusRange
&
)
const
;
inline
b
ool
IsSingle
(
void
)
const
;
};
...
...
@@ -76,7 +76,7 @@ inline LotusRange &LotusRange::operator =( const LotusRange& rCpy )
}
inline
sal_B
ool
LotusRange
::
operator
==
(
const
LotusRange
&
rRef
)
const
inline
b
ool
LotusRange
::
operator
==
(
const
LotusRange
&
rRef
)
const
{
return
(
nHash
==
rRef
.
nHash
&&
nColStart
==
rRef
.
nColStart
&&
nRowStart
==
rRef
.
nRowStart
&&
nColEnd
==
rRef
.
nColEnd
&&
...
...
@@ -84,7 +84,7 @@ inline sal_Bool LotusRange::operator ==( const LotusRange& rRef ) const
}
inline
sal_B
ool
LotusRange
::
operator
!=
(
const
LotusRange
&
rRef
)
const
inline
b
ool
LotusRange
::
operator
!=
(
const
LotusRange
&
rRef
)
const
{
return
(
nHash
!=
rRef
.
nHash
||
nColStart
!=
rRef
.
nColStart
||
nRowStart
!=
rRef
.
nRowStart
||
nColEnd
!=
rRef
.
nColEnd
||
...
...
@@ -92,7 +92,7 @@ inline sal_Bool LotusRange::operator !=( const LotusRange& rRef ) const
}
inline
sal_B
ool
LotusRange
::
IsSingle
(
void
)
const
inline
b
ool
LotusRange
::
IsSingle
(
void
)
const
{
return
(
nColStart
==
nColEnd
&&
nRowStart
==
nRowEnd
);
}
...
...
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