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
854f4ad6
Kaydet (Commit)
854f4ad6
authored
Ock 14, 2013
tarafından
Herbert Dürr
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#i121482# fix backwards regexp search for matches overlapping search start
üst
e7fc6627
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
textsearch.cxx
i18npool/source/search/textsearch.cxx
+7
-1
No files found.
i18npool/source/search/textsearch.cxx
Dosyayı görüntüle @
854f4ad6
...
...
@@ -816,9 +816,15 @@ SearchResult TextSearch::RESrchBkwrd( const OUString& searchStr,
// find the last match
int
nLastPos
=
0
;
int
nFoundEnd
=
0
;
do
{
nLastPos
=
pRegexMatcher
->
start
(
nIcuErr
);
}
while
(
pRegexMatcher
->
find
(
nLastPos
+
1
,
nIcuErr
));
nFoundEnd
=
pRegexMatcher
->
end
(
nIcuErr
);
if
(
nFoundEnd
>=
startPos
)
break
;
if
(
nFoundEnd
==
nLastPos
)
++
nFoundEnd
;
}
while
(
pRegexMatcher
->
find
(
nFoundEnd
,
nIcuErr
));
// find last match again to get its details
pRegexMatcher
->
find
(
nLastPos
,
nIcuErr
);
...
...
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