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
9d17726d
Kaydet (Commit)
9d17726d
authored
Agu 20, 2014
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
staruno -> css::uno
Change-Id: Ic82bbe5797d4f3c16096598cd566b917ee335a10
üst
ab9e2ed4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
dbexception.cxx
connectivity/source/commontools/dbexception.cxx
+2
-2
streamwrap.cxx
filter/source/xmlfilteradaptor/streamwrap.cxx
+4
-4
FormComponent.cxx
forms/source/component/FormComponent.cxx
+2
-2
No files found.
connectivity/source/commontools/dbexception.cxx
Dosyayı görüntüle @
9d17726d
...
@@ -126,9 +126,9 @@ const SQLExceptionInfo& SQLExceptionInfo::operator=(const ::com::sun::star::uno:
...
@@ -126,9 +126,9 @@ const SQLExceptionInfo& SQLExceptionInfo::operator=(const ::com::sun::star::uno:
}
}
SQLExceptionInfo
::
SQLExceptionInfo
(
const
star
uno
::
Any
&
_rError
)
SQLExceptionInfo
::
SQLExceptionInfo
(
const
css
::
uno
::
Any
&
_rError
)
{
{
const
star
uno
::
Type
&
aSQLExceptionType
=
cppu
::
UnoType
<
com
::
sun
::
star
::
sdbc
::
SQLException
>::
get
();
const
css
::
uno
::
Type
&
aSQLExceptionType
=
cppu
::
UnoType
<
com
::
sun
::
star
::
sdbc
::
SQLException
>::
get
();
bool
bValid
=
isAssignableFrom
(
aSQLExceptionType
,
_rError
.
getValueType
());
bool
bValid
=
isAssignableFrom
(
aSQLExceptionType
,
_rError
.
getValueType
());
if
(
bValid
)
if
(
bValid
)
m_aContent
=
_rError
;
m_aContent
=
_rError
;
...
...
filter/source/xmlfilteradaptor/streamwrap.cxx
Dosyayı görüntüle @
9d17726d
...
@@ -33,23 +33,23 @@ using namespace ::osl;
...
@@ -33,23 +33,23 @@ using namespace ::osl;
//= OOutputStreamWrapper
//= OOutputStreamWrapper
void
SAL_CALL
OOutputStreamWrapper
::
writeBytes
(
const
staruno
::
Sequence
<
sal_Int8
>&
aData
)
throw
(
stario
::
NotConnectedException
,
stario
::
BufferSizeExceededException
,
star
uno
::
RuntimeException
,
std
::
exception
)
void
SAL_CALL
OOutputStreamWrapper
::
writeBytes
(
const
css
::
uno
::
Sequence
<
sal_Int8
>&
aData
)
throw
(
stario
::
NotConnectedException
,
stario
::
BufferSizeExceededException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
{
sal_uInt64
nWritten
=
0
;
sal_uInt64
nWritten
=
0
;
rStream
.
write
(
aData
.
getConstArray
(),
aData
.
getLength
(),
nWritten
);
rStream
.
write
(
aData
.
getConstArray
(),
aData
.
getLength
(),
nWritten
);
if
(
nWritten
!=
(
sal_uInt64
)
aData
.
getLength
())
if
(
nWritten
!=
(
sal_uInt64
)
aData
.
getLength
())
{
{
throw
stario
::
BufferSizeExceededException
(
OUString
(),
static_cast
<
star
uno
::
XWeak
*>
(
this
));
throw
stario
::
BufferSizeExceededException
(
OUString
(),
static_cast
<
css
::
uno
::
XWeak
*>
(
this
));
}
}
}
}
void
SAL_CALL
OOutputStreamWrapper
::
flush
()
throw
(
stario
::
NotConnectedException
,
stario
::
BufferSizeExceededException
,
star
uno
::
RuntimeException
,
std
::
exception
)
void
SAL_CALL
OOutputStreamWrapper
::
flush
()
throw
(
stario
::
NotConnectedException
,
stario
::
BufferSizeExceededException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
{
}
}
void
SAL_CALL
OOutputStreamWrapper
::
closeOutput
()
throw
(
stario
::
NotConnectedException
,
stario
::
BufferSizeExceededException
,
star
uno
::
RuntimeException
,
std
::
exception
)
void
SAL_CALL
OOutputStreamWrapper
::
closeOutput
()
throw
(
stario
::
NotConnectedException
,
stario
::
BufferSizeExceededException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
{
}
}
...
...
forms/source/component/FormComponent.cxx
Dosyayı görüntüle @
9d17726d
...
@@ -468,7 +468,7 @@ Any SAL_CALL OControlModel::queryAggregation(const Type& _rType) throw (RuntimeE
...
@@ -468,7 +468,7 @@ Any SAL_CALL OControlModel::queryAggregation(const Type& _rType) throw (RuntimeE
return
aReturn
;
return
aReturn
;
}
}
void
OControlModel
::
readHelpTextCompatibly
(
const
star
uno
::
Reference
<
stario
::
XObjectInputStream
>&
_rxInStream
)
void
OControlModel
::
readHelpTextCompatibly
(
const
css
::
uno
::
Reference
<
stario
::
XObjectInputStream
>&
_rxInStream
)
{
{
OUString
sHelpText
;
OUString
sHelpText
;
::
comphelper
::
operator
>>
(
_rxInStream
,
sHelpText
);
::
comphelper
::
operator
>>
(
_rxInStream
,
sHelpText
);
...
@@ -484,7 +484,7 @@ void OControlModel::readHelpTextCompatibly(const staruno::Reference< stario::XOb
...
@@ -484,7 +484,7 @@ void OControlModel::readHelpTextCompatibly(const staruno::Reference< stario::XOb
}
}
}
}
void
OControlModel
::
writeHelpTextCompatibly
(
const
star
uno
::
Reference
<
stario
::
XObjectOutputStream
>&
_rxOutStream
)
void
OControlModel
::
writeHelpTextCompatibly
(
const
css
::
uno
::
Reference
<
stario
::
XObjectOutputStream
>&
_rxOutStream
)
{
{
OUString
sHelpText
;
OUString
sHelpText
;
try
try
...
...
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