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
39a33a54
Kaydet (Commit)
39a33a54
authored
Kas 29, 2016
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Rewrite some (trivial) assignments inside if/while conditions: formula
Change-Id: I28d41341607abae82a3bc5d9cacdb70e7431be18
üst
1e8dc795
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
FormulaHelper.cxx
formula/source/ui/dlg/FormulaHelper.cxx
+12
-4
No files found.
formula/source/ui/dlg/FormulaHelper.cxx
Dosyayı görüntüle @
39a33a54
...
@@ -223,8 +223,12 @@ sal_Int32 FormulaHelper::GetFunctionStart( const OUString& rFormula,
...
@@ -223,8 +223,12 @@ sal_Int32 FormulaHelper::GetFunctionStart( const OUString& rFormula,
if
(
nParPos
>
0
)
if
(
nParPos
>
0
)
nParPos
--
;
nParPos
--
;
}
}
else
if
(
!
(
bFound
=
(
rFormula
[
nParPos
]
==
'('
)
)
)
else
nParPos
--
;
{
bFound
=
rFormula
[
nParPos
]
==
'('
;
if
(
!
bFound
)
nParPos
--
;
}
}
}
}
}
else
else
...
@@ -238,8 +242,12 @@ sal_Int32 FormulaHelper::GetFunctionStart( const OUString& rFormula,
...
@@ -238,8 +242,12 @@ sal_Int32 FormulaHelper::GetFunctionStart( const OUString& rFormula,
nParPos
++
;
nParPos
++
;
nParPos
++
;
nParPos
++
;
}
}
else
if
(
!
(
bFound
=
(
rFormula
[
nParPos
]
==
'('
)
)
)
else
nParPos
++
;
{
bFound
=
rFormula
[
nParPos
]
==
'('
;
if
(
!
bFound
)
nParPos
++
;
}
}
}
}
}
...
...
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