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
558b08d5
Kaydet (Commit)
558b08d5
authored
Eyl 17, 2015
tarafından
Lionel Elie Mamane
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
silence warning when not a warning
Change-Id: I31d7835a5ed3053cd1a930b3fb922d689d6ddcbe
üst
a4677e8d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
RowSetCache.cxx
dbaccess/source/core/api/RowSetCache.cxx
+2
-1
No files found.
dbaccess/source/core/api/RowSetCache.cxx
Dosyayı görüntüle @
558b08d5
...
@@ -741,7 +741,8 @@ bool ORowSetCache::afterLast( )
...
@@ -741,7 +741,8 @@ bool ORowSetCache::afterLast( )
bool
ORowSetCache
::
fillMatrix
(
sal_Int32
&
_nNewStartPos
,
sal_Int32
&
_nNewEndPos
)
bool
ORowSetCache
::
fillMatrix
(
sal_Int32
&
_nNewStartPos
,
sal_Int32
&
_nNewEndPos
)
{
{
OSL_ENSURE
(
_nNewStartPos
!=
_nNewEndPos
,
"ORowSetCache::fillMatrix: StartPos and EndPos can not be equal!"
);
OSL_ENSURE
((
_nNewStartPos
!=
_nNewEndPos
)
||
(
_nNewStartPos
==
0
&&
_nNewEndPos
==
0
&&
m_nRowCount
==
0
),
"ORowSetCache::fillMatrix: StartPos and EndPos can not be equal (unless the recordset is empty)!"
);
// If _nNewStartPos >= 0, then fill the whole window with new data
// If _nNewStartPos >= 0, then fill the whole window with new data
// Else if _nNewStartPos == -1, then fill only segment [m_nEndPos, _nNewEndPos)
// Else if _nNewStartPos == -1, then fill only segment [m_nEndPos, _nNewEndPos)
// Else, undefined (invalid argument)
// Else, undefined (invalid argument)
...
...
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