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
bb4dd8d9
Kaydet (Commit)
bb4dd8d9
authored
Nis 03, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused getBinary/CharacterStream
Change-Id: I008d4190191ebff1c6c97af120b1db2707597ffe
üst
0c50756b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
FValue.cxx
connectivity/source/commontools/FValue.cxx
+0
-6
No files found.
connectivity/source/commontools/FValue.cxx
Dosyayı görüntüle @
bb4dd8d9
...
...
@@ -2181,8 +2181,6 @@ namespace detail
virtual
Time
getTime
()
const
=
0
;
virtual
DateTime
getTimestamp
()
const
=
0
;
virtual
Sequence
<
sal_Int8
>
getBytes
()
const
=
0
;
virtual
Reference
<
XInputStream
>
getBinaryStream
()
const
=
0
;
virtual
Reference
<
XInputStream
>
getCharacterStream
()
const
=
0
;
virtual
Reference
<
XBlob
>
getBlob
()
const
=
0
;
virtual
Reference
<
XClob
>
getClob
()
const
=
0
;
virtual
Any
getObject
()
const
=
0
;
...
...
@@ -2213,8 +2211,6 @@ namespace detail
virtual
Time
getTime
()
const
SAL_OVERRIDE
{
return
m_xRow
->
getTime
(
m_nPos
);
};
virtual
DateTime
getTimestamp
()
const
SAL_OVERRIDE
{
return
m_xRow
->
getTimestamp
(
m_nPos
);
};
virtual
Sequence
<
sal_Int8
>
getBytes
()
const
SAL_OVERRIDE
{
return
m_xRow
->
getBytes
(
m_nPos
);
};
virtual
Reference
<
XInputStream
>
getBinaryStream
()
const
SAL_OVERRIDE
{
return
m_xRow
->
getBinaryStream
(
m_nPos
);
};
virtual
Reference
<
XInputStream
>
getCharacterStream
()
const
SAL_OVERRIDE
{
return
m_xRow
->
getCharacterStream
(
m_nPos
);
};
virtual
Reference
<
XBlob
>
getBlob
()
const
SAL_OVERRIDE
{
return
m_xRow
->
getBlob
(
m_nPos
);
};
virtual
Reference
<
XClob
>
getClob
()
const
SAL_OVERRIDE
{
return
m_xRow
->
getClob
(
m_nPos
);
};
virtual
Any
getObject
()
const
SAL_OVERRIDE
{
return
m_xRow
->
getObject
(
m_nPos
,
NULL
);
};
...
...
@@ -2246,8 +2242,6 @@ namespace detail
virtual
Time
getTime
()
const
SAL_OVERRIDE
{
return
m_xColumn
->
getTime
();
};
virtual
DateTime
getTimestamp
()
const
SAL_OVERRIDE
{
return
m_xColumn
->
getTimestamp
();
};
virtual
Sequence
<
sal_Int8
>
getBytes
()
const
SAL_OVERRIDE
{
return
m_xColumn
->
getBytes
();
};
virtual
Reference
<
XInputStream
>
getBinaryStream
()
const
SAL_OVERRIDE
{
return
m_xColumn
->
getBinaryStream
();
};
virtual
Reference
<
XInputStream
>
getCharacterStream
()
const
SAL_OVERRIDE
{
return
m_xColumn
->
getCharacterStream
();
};
virtual
Reference
<
XBlob
>
getBlob
()
const
SAL_OVERRIDE
{
return
m_xColumn
->
getBlob
();
};
virtual
Reference
<
XClob
>
getClob
()
const
SAL_OVERRIDE
{
return
m_xColumn
->
getClob
();
};
virtual
Any
getObject
()
const
SAL_OVERRIDE
{
return
m_xColumn
->
getObject
(
NULL
);
};
...
...
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