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
2fc13fef
Kaydet (Commit)
2fc13fef
authored
Ock 21, 2017
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1399020 Dereference after null check
Change-Id: Ic4a2eb0425cd48de85a40350c7368ade486842c2
üst
359e6881
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
findtxt.cxx
sw/source/core/crsr/findtxt.cxx
+3
-3
No files found.
sw/source/core/crsr/findtxt.cxx
Dosyayı görüntüle @
2fc13fef
...
...
@@ -303,12 +303,12 @@ bool SwPaM::Find( const SearchOptions2& rSearchOpt, bool bSearchInNotes , utl::T
}
SwDocShell
*
const
pDocShell
=
pNode
->
GetDoc
()
->
GetDocShell
();
SwWrtShell
*
const
pWrtShell
=
(
pDocShell
)
?
pDocShell
->
GetWrtShell
()
:
nullptr
;
SwPostItMgr
*
const
pPostItMgr
=
(
pWrtShell
)
?
pWrtShell
->
GetPostItMgr
()
:
nullptr
;
SwWrtShell
*
const
pWrtShell
=
pDocShell
?
pDocShell
->
GetWrtShell
()
:
nullptr
;
SwPostItMgr
*
const
pPostItMgr
=
pWrtShell
?
pWrtShell
->
GetPostItMgr
()
:
nullptr
;
// If there is an active text edit, then search there.
bool
bEndedTextEdit
=
false
;
SdrView
*
pSdrView
=
pWrtShell
->
GetDrawView
()
;
SdrView
*
pSdrView
=
pWrtShell
?
pWrtShell
->
GetDrawView
()
:
nullptr
;
if
(
pSdrView
)
{
// If the edited object is not anchored to this node, then ignore it.
...
...
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