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
a63d7020
Kaydet (Commit)
a63d7020
authored
Ock 17, 2012
tarafından
Lionel Elie Mamane
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
janitorial: typo in private member name
üst
d30ecc1a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
RowSet.cxx
dbaccess/source/core/api/RowSet.cxx
+4
-4
RowSet.hxx
dbaccess/source/core/api/RowSet.hxx
+2
-2
No files found.
dbaccess/source/core/api/RowSet.cxx
Dosyayı görüntüle @
a63d7020
...
...
@@ -162,7 +162,7 @@ ORowSet::ORowSet( const Reference< ::com::sun::star::lang::XMultiServiceFactory
,
m_bCommandFacetsDirty
(
sal_True
)
,
m_bModified
(
sal_False
)
,
m_bRebuildConnOnExecute
(
sal_False
)
,
m_bIsBookmarable
(
sal_True
)
,
m_bIsBookmar
k
able
(
sal_True
)
,
m_bNew
(
sal_False
)
,
m_bCanUpdateInsertedRows
(
sal_True
)
,
m_bOwnConnection
(
sal_False
)
...
...
@@ -197,7 +197,7 @@ ORowSet::ORowSet( const Reference< ::com::sun::star::lang::XMultiServiceFactory
registerProperty
(
PROPERTY_SINGLESELECTQUERYCOMPOSER
,
PROPERTY_ID_SINGLESELECTQUERYCOMPOSER
,
nRT
,
&
m_xComposer
,
::
getCppuType
(
reinterpret_cast
<
Reference
<
XSingleSelectQueryComposer
>*
>
(
NULL
)));
// sdbcx.ResultSet Properties
registerProperty
(
PROPERTY_ISBOOKMARKABLE
,
PROPERTY_ID_ISBOOKMARKABLE
,
nRT
,
&
m_bIsBookmarable
,
::
getBooleanCppuType
());
registerProperty
(
PROPERTY_ISBOOKMARKABLE
,
PROPERTY_ID_ISBOOKMARKABLE
,
nRT
,
&
m_bIsBookmar
k
able
,
::
getBooleanCppuType
());
registerProperty
(
PROPERTY_CANUPDATEINSERTEDROWS
,
PROPERTY_ID_CANUPDATEINSERTEDROWS
,
nRT
,
&
m_bCanUpdateInsertedRows
,
::
getBooleanCppuType
());
// sdbc.ResultSet Properties
registerProperty
(
PROPERTY_RESULTSETCONCURRENCY
,
PROPERTY_ID_RESULTSETCONCURRENCY
,
PropertyAttribute
::
TRANSIENT
,
&
m_nResultSetConcurrency
,
::
getCppuType
(
reinterpret_cast
<
sal_Int32
*>
(
NULL
)));
...
...
@@ -2736,7 +2736,7 @@ ORowSetClone::ORowSetClone( const ::comphelper::ComponentContext& _rContext, ORo
,
m_pParent
(
&
rParent
)
,
m_nFetchDirection
(
rParent
.
m_nFetchDirection
)
,
m_nFetchSize
(
rParent
.
m_nFetchSize
)
,
m_bIsBookmarable
(
sal_True
)
,
m_bIsBookmar
k
able
(
sal_True
)
{
DBG_CTOR
(
ORowSetClone
,
NULL
);
...
...
@@ -2813,7 +2813,7 @@ ORowSetClone::ORowSetClone( const ::comphelper::ComponentContext& _rContext, ORo
registerProperty
(
PROPERTY_RESULTSETTYPE
,
PROPERTY_ID_RESULTSETTYPE
,
PropertyAttribute
::
READONLY
,
&
m_nResultSetType
,
::
getCppuType
(
reinterpret_cast
<
sal_Int32
*>
(
NULL
)));
registerProperty
(
PROPERTY_FETCHDIRECTION
,
PROPERTY_ID_FETCHDIRECTION
,
PropertyAttribute
::
TRANSIENT
,
&
m_nFetchDirection
,
::
getCppuType
(
reinterpret_cast
<
sal_Int32
*>
(
NULL
)));
registerProperty
(
PROPERTY_FETCHSIZE
,
PROPERTY_ID_FETCHSIZE
,
PropertyAttribute
::
TRANSIENT
,
&
m_nFetchSize
,
::
getCppuType
(
reinterpret_cast
<
sal_Int32
*>
(
NULL
)));
registerProperty
(
PROPERTY_ISBOOKMARKABLE
,
PROPERTY_ID_ISBOOKMARKABLE
,
nRT
,
&
m_bIsBookmarable
,
::
getBooleanCppuType
());
registerProperty
(
PROPERTY_ISBOOKMARKABLE
,
PROPERTY_ID_ISBOOKMARKABLE
,
nRT
,
&
m_bIsBookmar
k
able
,
::
getBooleanCppuType
());
}
ORowSetClone
::~
ORowSetClone
()
...
...
dbaccess/source/core/api/RowSet.hxx
Dosyayı görüntüle @
a63d7020
...
...
@@ -142,7 +142,7 @@ namespace dbaccess
sal_Bool
m_bCommandFacetsDirty
;
// any of the facets which define the active command is dirty
sal_Bool
m_bModified
;
sal_Bool
m_bRebuildConnOnExecute
;
sal_Bool
m_bIsBookmarable
;
sal_Bool
m_bIsBookmar
k
able
;
sal_Bool
m_bNew
;
sal_Bool
m_bCanUpdateInsertedRows
;
sal_Bool
m_bOwnConnection
;
...
...
@@ -476,7 +476,7 @@ namespace dbaccess
ORowSet
*
m_pParent
;
sal_Int32
m_nFetchDirection
;
sal_Int32
m_nFetchSize
;
sal_Bool
m_bIsBookmarable
;
sal_Bool
m_bIsBookmar
k
able
;
protected
:
// the clone can not insert anything
...
...
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