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
935147ce
Kaydet (Commit)
935147ce
authored
Agu 22, 2014
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert OSL_... to SAL_WARN
Change-Id: I073b6f985c4a67f56319e03790b2bceee2f957ff
üst
ce5980fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
formula.cxx
formula/source/ui/dlg/formula.cxx
+10
-5
No files found.
formula/source/ui/dlg/formula.cxx
Dosyayı görüntüle @
935147ce
...
...
@@ -565,9 +565,10 @@ sal_Int32 FormulaDlg_Impl::GetFunctionPos(sal_Int32 nPos)
nOldTokPos
=
nTokPos
;
}
// while ( pIter != pEnd )
}
catch
(
const
uno
::
Exception
&
)
catch
(
const
uno
::
Exception
&
e
)
{
OSL_FAIL
(
"Exception caught!"
);
(
void
)
e
;
SAL_WARN
(
"formula.ui"
,
"FormulaDlg_Impl::GetFunctionPos exception! "
<<
e
.
Message
);
}
return
nFuncPos
;
...
...
@@ -955,9 +956,10 @@ OUString FormulaDlg_Impl::RepairFormula(const OUString& aFormula)
}
}
catch
(
const
uno
::
Exception
&
)
catch
(
const
uno
::
Exception
&
e
)
{
OSL_FAIL
(
"Exception caught!"
);
(
void
)
e
;
SAL_WARN
(
"formula.ui"
,
"FormulaDlg_Impl::RepairFormula exception! "
<<
e
.
Message
);
}
return
aResult
;
}
...
...
@@ -1831,7 +1833,10 @@ void FormulaDlg::StoreFormEditData(FormEditData* pData)
const
IFunctionDescription
*
FormulaDlg
::
getCurrentFunctionDescription
()
const
{
OSL_VERIFY
(
!
m_pImpl
->
pFuncDesc
||
m_pImpl
->
pFuncDesc
->
getSuppressedArgumentCount
()
==
m_pImpl
->
nArgs
);
SAL_WARN_IF
(
(
m_pImpl
->
pFuncDesc
&&
m_pImpl
->
pFuncDesc
->
getSuppressedArgumentCount
()
!=
m_pImpl
->
nArgs
),
"formula.ui"
,
"FormulaDlg::getCurrentFunctionDescription: getSuppressedArgumentCount "
<<
m_pImpl
->
pFuncDesc
->
getSuppressedArgumentCount
()
<<
" != nArgs "
<<
m_pImpl
->
nArgs
<<
" for "
<<
m_pImpl
->
pFuncDesc
->
getFunctionName
());
return
m_pImpl
->
pFuncDesc
;
}
...
...
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