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
061e80fb
Kaydet (Commit)
061e80fb
authored
Kas 21, 2014
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some of our supported compilers still don't have 'override' it seems
Change-Id: Ie3ca1636657b90fd5bc193aa7595f95f44d43915
üst
0f92895d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
calcoptionsdlg.cxx
sc/source/ui/optdlg/calcoptionsdlg.cxx
+6
-6
No files found.
sc/source/ui/optdlg/calcoptionsdlg.cxx
Dosyayı görüntüle @
061e80fb
...
...
@@ -1072,14 +1072,14 @@ struct UnOp : Op
{
}
virtual
void
addHeader
(
ScDocument
*
pDoc
,
int
nTab
)
const
override
virtual
void
addHeader
(
ScDocument
*
pDoc
,
int
nTab
)
const
SAL_OVERRIDE
{
pDoc
->
SetString
(
ScAddress
(
0
,
0
,
nTab
),
"arg"
);
pDoc
->
SetString
(
ScAddress
(
1
,
0
,
nTab
),
msOp
+
"(arg)"
);
pDoc
->
SetString
(
ScAddress
(
2
,
0
,
nTab
),
"expected"
);
}
virtual
void
addRow
(
ScDocument
*
pDoc
,
int
nRow
,
int
nTab
)
const
override
virtual
void
addRow
(
ScDocument
*
pDoc
,
int
nRow
,
int
nTab
)
const
SAL_OVERRIDE
{
double
nArg
;
...
...
@@ -1115,7 +1115,7 @@ struct UnOp : Op
}
}
virtual
OUString
getSummaryFormula
(
ScDocument
*
pDoc
,
int
nTab
)
const
override
virtual
OUString
getSummaryFormula
(
ScDocument
*
pDoc
,
int
nTab
)
const
SAL_OVERRIDE
{
return
OUString
(
"=SUM("
)
+
ScRange
(
ScAddress
(
3
,
1
,
nTab
),
...
...
@@ -1145,7 +1145,7 @@ struct BinOp : Op
{
}
virtual
void
addHeader
(
ScDocument
*
pDoc
,
int
nTab
)
const
override
virtual
void
addHeader
(
ScDocument
*
pDoc
,
int
nTab
)
const
SAL_OVERRIDE
{
pDoc
->
SetString
(
ScAddress
(
0
,
0
,
nTab
),
"lhs"
);
pDoc
->
SetString
(
ScAddress
(
1
,
0
,
nTab
),
"rhs"
);
...
...
@@ -1153,7 +1153,7 @@ struct BinOp : Op
pDoc
->
SetString
(
ScAddress
(
3
,
0
,
nTab
),
"expected"
);
}
virtual
void
addRow
(
ScDocument
*
pDoc
,
int
nRow
,
int
nTab
)
const
override
virtual
void
addRow
(
ScDocument
*
pDoc
,
int
nRow
,
int
nTab
)
const
SAL_OVERRIDE
{
double
nLhs
,
nRhs
;
...
...
@@ -1178,7 +1178,7 @@ struct BinOp : Op
",0,1)"
);
}
virtual
OUString
getSummaryFormula
(
ScDocument
*
pDoc
,
int
nTab
)
const
override
virtual
OUString
getSummaryFormula
(
ScDocument
*
pDoc
,
int
nTab
)
const
SAL_OVERRIDE
{
return
OUString
(
"=SUM("
)
+
ScRange
(
ScAddress
(
4
,
1
,
nTab
),
...
...
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