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
f068f1ae
Kaydet (Commit)
f068f1ae
authored
Eki 23, 2013
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bail out on first hit. No need to go through the whole set.
Change-Id: I044432a1d4e63f49731c24e4eb62525386818620
üst
83c4ebbe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
10 deletions
+7
-10
content.cxx
sc/source/ui/navipi/content.cxx
+7
-10
No files found.
sc/source/ui/navipi/content.cxx
Dosyayı görüntüle @
f068f1ae
...
...
@@ -886,7 +886,6 @@ sal_Bool ScContentTree::NoteStringsChanged()
SvTreeListEntry
*
pEntry
=
FirstChild
(
pParent
);
bool
bEqual
=
true
;
std
::
vector
<
sc
::
NoteEntry
>
aEntries
;
pDoc
->
GetAllNoteEntries
(
aEntries
);
std
::
vector
<
sc
::
NoteEntry
>::
const_iterator
it
=
aEntries
.
begin
(),
itEnd
=
aEntries
.
end
();
...
...
@@ -894,20 +893,18 @@ sal_Bool ScContentTree::NoteStringsChanged()
{
const
ScPostIt
*
pNote
=
it
->
mpNote
;
if
(
!
pEntry
)
bEqual
=
false
;
else
{
if
(
lcl_NoteString
(
*
pNote
)
!=
GetEntryText
(
pEntry
))
bEqual
=
false
;
return
true
;
pEntry
=
NextSibling
(
pEntry
);
}
if
(
lcl_NoteString
(
*
pNote
)
!=
GetEntryText
(
pEntry
))
return
true
;
pEntry
=
NextSibling
(
pEntry
);
}
if
(
pEntry
)
bEqual
=
false
;
// kommt noch was
return
true
;
return
!
bEqual
;
return
false
;
}
sal_Bool
ScContentTree
::
DrawNamesChanged
(
sal_uInt16
nType
)
...
...
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