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
2877b291
Kaydet (Commit)
2877b291
authored
Şub 10, 2015
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use "!=" instead of "<" to compare current it with end it
Change-Id: Ic2ed4b935ecf1d63065bc5147e62d510e73bd5c5
üst
39b81f2f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
brwbox1.cxx
svtools/source/brwbox/brwbox1.cxx
+3
-3
No files found.
svtools/source/brwbox/brwbox1.cxx
Dosyayı görüntüle @
2877b291
...
...
@@ -236,8 +236,8 @@ void BrowseBox::InsertHandleColumn( sal_uLong nWidth )
{
BrowserColumns
::
iterator
iCol
=
pCols
->
begin
();
const
BrowserColumns
::
iterator
colsEnd
=
pCols
->
end
();
if
(
iCol
<
colsEnd
)
for
(
++
iCol
;
iCol
<
colsEnd
;
++
iCol
)
if
(
iCol
!=
colsEnd
)
for
(
++
iCol
;
iCol
!=
colsEnd
;
++
iCol
)
OSL_ENSURE
(
(
*
iCol
)
->
GetId
()
!=
HandleColumnId
,
"BrowseBox::InsertHandleColumn: there is a non-Handle column with handle ID"
);
}
#endif
...
...
@@ -269,7 +269,7 @@ void BrowseBox::InsertDataColumn( sal_uInt16 nItemId, const OUString& rText,
#if OSL_DEBUG_LEVEL > 0
{
const
BrowserColumns
::
iterator
colsEnd
=
pCols
->
end
();
for
(
BrowserColumns
::
iterator
iCol
=
pCols
->
begin
();
iCol
<
colsEnd
;
++
iCol
)
for
(
BrowserColumns
::
iterator
iCol
=
pCols
->
begin
();
iCol
!=
colsEnd
;
++
iCol
)
OSL_ENSURE
(
(
*
iCol
)
->
GetId
()
!=
nItemId
,
"BrowseBox::InsertDataColumn: duplicate column Id"
);
}
#endif
...
...
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