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
23075c27
Kaydet (Commit)
23075c27
authored
Mar 14, 2013
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove a local inline function that's used from only one call site.
Change-Id: I73954b8a1de436b9c4881d803f4f33cff1b79c4f
üst
fa5473bb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
9 deletions
+6
-9
output2.cxx
sc/source/ui/view/output2.cxx
+6
-9
No files found.
sc/source/ui/view/output2.cxx
Dosyayı görüntüle @
23075c27
...
...
@@ -1073,13 +1073,6 @@ static inline void lcl_CreateInterpretProgress( sal_Bool& bProgress, ScDocument*
}
}
inline
sal_uInt8
GetScriptType
(
ScDocument
*
pDoc
,
ScBaseCell
*
pCell
,
const
ScPatternAttr
*
pPattern
,
const
SfxItemSet
*
pCondSet
)
{
return
pDoc
->
GetCellScriptType
(
pCell
,
pPattern
->
GetNumberFormat
(
pDoc
->
GetFormatTable
(),
pCondSet
)
);
}
inline
sal_Bool
IsAmbiguousScript
(
sal_uInt8
nScript
)
{
return
(
nScript
!=
SCRIPTTYPE_LATIN
&&
...
...
@@ -1604,8 +1597,12 @@ void ScOutputData::DrawStrings( sal_Bool bPixelToLogic )
pPattern
=
pAltPattern
;
}
sal_uInt8
nScript
=
GetScriptType
(
mpDoc
,
pCell
,
pPattern
,
pCondSet
);
if
(
nScript
==
0
)
nScript
=
ScGlobal
::
GetDefaultScriptType
();
sal_uInt8
nScript
=
mpDoc
->
GetCellScriptType
(
pCell
,
pPattern
->
GetNumberFormat
(
mpDoc
->
GetFormatTable
(),
pCondSet
));
if
(
nScript
==
0
)
nScript
=
ScGlobal
::
GetDefaultScriptType
();
if
(
pPattern
!=
pOldPattern
||
pCondSet
!=
pOldCondSet
||
nScript
!=
nOldScript
||
mbSyntaxMode
)
{
...
...
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