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
bb60b49c
Kaydet (Commit)
bb60b49c
authored
Ock 15, 2018
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More loplugin:cstylecast: formula
Change-Id: I0a6f4eaf49282a6aa74b24ea62736065d1786f58
üst
e1c753da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
formula.cxx
formula/source/ui/dlg/formula.cxx
+1
-1
errorcodes.hxx
include/formula/errorcodes.hxx
+1
-1
No files found.
formula/source/ui/dlg/formula.cxx
Dosyayı görüntüle @
bb60b49c
...
...
@@ -457,7 +457,7 @@ sal_Int32 FormulaDlg_Impl::GetFunctionPos(sal_Int32 nPos)
const
OUString
aString
=
xParser
->
printFormula
(
aArgs
,
aRefPos
);
const
sheet
::
FormulaToken
*
pNextToken
=
pIter
+
1
;
if
(
!
m_bUserMatrixFlag
&&
FormulaCompiler
::
IsMatrixFunction
(
(
OpCode
)
eOp
)
)
if
(
!
m_bUserMatrixFlag
&&
FormulaCompiler
::
IsMatrixFunction
(
static_cast
<
OpCode
>
(
eOp
)
)
)
{
m_pBtnMatrix
->
Check
();
}
...
...
include/formula/errorcodes.hxx
Dosyayı görüntüle @
bb60b49c
...
...
@@ -110,7 +110,7 @@ inline FormulaError GetDoubleErrorValue( double fVal )
// Another NAN, e.g. -nan(0x8000000000000) from calculating with -inf
return
FormulaError
::
IllegalFPOperation
;
// Any other error known to us as error code.
return
(
FormulaError
)
(
nErr
&
0x0000ffff
);
return
static_cast
<
FormulaError
>
(
nErr
&
0x0000ffff
);
}
/** Error values that are accepted as detailed "#ERRxxx!" constants.
...
...
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