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
2bb99ca1
Kaydet (Commit)
2bb99ca1
authored
Eki 01, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
mysqlc: These shall be plain "Time" not "tools::Time" apparently
Change-Id: Id96a75bb8a07ea3b9701b9fe4692dfc81dbd8295
üst
4687ce06
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
mysqlc_preparedstatement.cxx
mysqlc/source/mysqlc_preparedstatement.cxx
+1
-1
mysqlc_resultset.cxx
mysqlc/source/mysqlc_resultset.cxx
+3
-3
No files found.
mysqlc/source/mysqlc_preparedstatement.cxx
Dosyayı görüntüle @
2bb99ca1
...
...
@@ -374,7 +374,7 @@ void SAL_CALL OPreparedStatement::setDate(sal_Int32 parameter, const Date& aData
/* {{{ OPreparedStatement::setTime() -I- */
void
SAL_CALL
OPreparedStatement
::
setTime
(
sal_Int32
parameter
,
const
tools
::
Time
&
aVal
)
void
SAL_CALL
OPreparedStatement
::
setTime
(
sal_Int32
parameter
,
const
Time
&
aVal
)
throw
(
SQLException
,
RuntimeException
,
std
::
exception
)
{
OSL_TRACE
(
"OPreparedStatement::setTime"
);
...
...
mysqlc/source/mysqlc_resultset.cxx
Dosyayı görüntüle @
2bb99ca1
...
...
@@ -524,7 +524,7 @@ Time SAL_CALL OResultSet::getTime(sal_Int32 column)
MutexGuard
aGuard
(
m_aMutex
);
checkColumnIndex
(
column
);
tools
::
Time
t
;
Time
t
;
OUString
timeString
=
getString
(
column
);
OUString
token
;
sal_Int32
nIndex
,
i
=
0
;
...
...
@@ -562,7 +562,7 @@ DateTime SAL_CALL OResultSet::getTimestamp(sal_Int32 column)
checkColumnIndex
(
column
);
DateTime
dt
;
Date
d
=
getDate
(
column
);
tools
::
Time
t
=
getTime
(
column
);
Time
t
=
getTime
(
column
);
dt
.
Year
=
d
.
Year
;
dt
.
Month
=
d
.
Month
;
...
...
@@ -1088,7 +1088,7 @@ void SAL_CALL OResultSet::updateDate(sal_Int32 column, const Date& /* x */)
/* }}} */
/* {{{ OResultSet::updateTime() -U- */
void
SAL_CALL
OResultSet
::
updateTime
(
sal_Int32
column
,
const
tools
::
Time
&
/* x */
)
void
SAL_CALL
OResultSet
::
updateTime
(
sal_Int32
column
,
const
Time
&
/* x */
)
throw
(
SQLException
,
RuntimeException
,
std
::
exception
)
{
OSL_TRACE
(
"OResultSet::updateTime"
);
...
...
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