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
840e2f3e
Kaydet (Commit)
840e2f3e
authored
Kas 20, 2011
tarafından
Jan Holesovsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Inline ScQueryEntry::Item::Item() to fix Windows build.
üst
a84651f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
queryentry.hxx
sc/inc/queryentry.hxx
+2
-1
queryentry.cxx
sc/source/core/tool/queryentry.cxx
+0
-3
No files found.
sc/inc/queryentry.hxx
Dosyayı görüntüle @
840e2f3e
...
@@ -52,7 +52,8 @@ struct SC_DLLPUBLIC ScQueryEntry
...
@@ -52,7 +52,8 @@ struct SC_DLLPUBLIC ScQueryEntry
double
mfVal
;
double
mfVal
;
rtl
::
OUString
maString
;
rtl
::
OUString
maString
;
Item
();
Item
()
:
meType
(
ByValue
),
mfVal
(
0.0
)
{}
bool
operator
==
(
const
Item
&
r
)
const
;
bool
operator
==
(
const
Item
&
r
)
const
;
};
};
typedef
std
::
vector
<
Item
>
QueryItemsType
;
typedef
std
::
vector
<
Item
>
QueryItemsType
;
...
...
sc/source/core/tool/queryentry.cxx
Dosyayı görüntüle @
840e2f3e
...
@@ -39,9 +39,6 @@
...
@@ -39,9 +39,6 @@
#define SC_EMPTYFIELDS ((double)0x0042)
#define SC_EMPTYFIELDS ((double)0x0042)
#define SC_NONEMPTYFIELDS ((double)0x0043)
#define SC_NONEMPTYFIELDS ((double)0x0043)
ScQueryEntry
::
Item
::
Item
()
:
meType
(
ByValue
),
mfVal
(
0.0
)
{}
bool
ScQueryEntry
::
Item
::
operator
==
(
const
Item
&
r
)
const
bool
ScQueryEntry
::
Item
::
operator
==
(
const
Item
&
r
)
const
{
{
return
meType
==
r
.
meType
&&
mfVal
==
r
.
mfVal
&&
maString
.
equals
(
r
.
maString
);
return
meType
==
r
.
meType
&&
mfVal
==
r
.
mfVal
&&
maString
.
equals
(
r
.
maString
);
...
...
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