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
f379da21
Kaydet (Commit)
f379da21
authored
Eki 25, 2010
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
micro optimizations
üst
e5e4c54d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
cpp2uno.cxx
bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx
+2
-2
helper.cxx
bridges/source/remote/static/helper.cxx
+1
-1
urp_bridgeimpl.cxx
bridges/source/remote/urp/urp_bridgeimpl.cxx
+4
-4
urp_environment.cxx
bridges/source/remote/urp/urp_environment.cxx
+2
-2
urp_propertyobject.cxx
bridges/source/remote/urp/urp_propertyobject.cxx
+1
-1
No files found.
bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx
Dosyayı görüntüle @
f379da21
...
...
@@ -292,7 +292,7 @@ extern "C" typelib_TypeClass cpp_vtable_call(
OSL_ENSURE
(
nFunctionIndex
<
pTypeDescr
->
nMapFunctionIndexToMemberIndex
,
"### illegal vtable index!
\n
"
);
if
(
nFunctionIndex
>=
pTypeDescr
->
nMapFunctionIndexToMemberIndex
)
{
throw
RuntimeException
(
OUString
::
createFromAscii
(
"illegal vtable index!"
),
throw
RuntimeException
(
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"illegal vtable index!"
)
),
reinterpret_cast
<
XInterface
*>
(
pCppI
)
);
}
...
...
@@ -389,7 +389,7 @@ extern "C" typelib_TypeClass cpp_vtable_call(
}
default
:
{
throw
RuntimeException
(
OUString
::
createFromAscii
(
"no member description found!"
),
throw
RuntimeException
(
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"no member description found!"
)
),
reinterpret_cast
<
XInterface
*>
(
pCppI
)
);
// is here for dummy
eRet
=
typelib_TypeClass_VOID
;
...
...
bridges/source/remote/static/helper.cxx
Dosyayı görüntüle @
f379da21
...
...
@@ -128,7 +128,7 @@ void SAL_CALL remote_sendQueryInterface(
// get type for queryInterface
OUString
sCompleteMethodName
=
type
.
getTypeName
();
sCompleteMethodName
+=
OUString
::
createFromAscii
(
"::queryInterface"
);
sCompleteMethodName
+=
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"::queryInterface"
)
);
typelib_InterfaceMemberTypeDescription
*
pMemberType
=
0
;
typelib_typedescription_getByName
(
...
...
bridges/source/remote/urp/urp_bridgeimpl.cxx
Dosyayı görüntüle @
f379da21
...
...
@@ -205,9 +205,9 @@ void urp_BridgeImpl::applyProtocolChanges( const Properties &props )
void
urp_BridgeImpl
::
addError
(
char
const
*
pError
)
{
OUString
message
=
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"(tid="
)
);
OUString
message
=
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"(tid="
)
);
message
+=
OUString
::
valueOf
(
(
sal_Int32
)
osl_getThreadIdentifier
(
0
)
);
message
+=
OUString
::
createFromAscii
(
") "
);
message
+=
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
") "
)
);
message
+=
OUString
::
createFromAscii
(
pError
);
MutexGuard
guard
(
m_errorListMutex
);
m_lstErrors
.
push_back
(
message
);
...
...
@@ -215,9 +215,9 @@ void urp_BridgeImpl::addError( char const *pError )
void
urp_BridgeImpl
::
addError
(
const
OUString
&
error
)
{
OUString
message
=
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"(tid="
)
);
OUString
message
=
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"(tid="
)
);
message
+=
OUString
::
valueOf
(
(
sal_Int32
)
osl_getThreadIdentifier
(
0
)
);
message
+=
OUString
::
createFromAscii
(
") "
);
message
+=
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
") "
)
);
message
+=
error
;
MutexGuard
guard
(
m_errorListMutex
);
m_lstErrors
.
push_back
(
message
);
...
...
bridges/source/remote/urp/urp_environment.cxx
Dosyayı görüntüle @
f379da21
...
...
@@ -515,8 +515,8 @@ void SAL_CALL uno_ext_getMapping(
::
rtl
::
OUString
sFromName
=
pFrom
->
pTypeName
;
::
rtl
::
OUString
sToName
=
pTo
->
pTypeName
;
::
rtl
::
OUString
sUno
=
OUString
::
createFromAscii
(
UNO_LB_UNO
);
::
rtl
::
OUString
sRemote
=
OUString
::
createFromAscii
(
"urp"
);
::
rtl
::
OUString
sUno
(
RTL_CONSTASCII_USTRINGPARAM
(
UNO_LB_UNO
)
);
::
rtl
::
OUString
sRemote
(
RTL_CONSTASCII_USTRINGPARAM
(
"urp"
)
);
if
(
sFromName
.
equalsIgnoreAsciiCase
(
sRemote
)
&&
sToName
.
equalsIgnoreAsciiCase
(
sUno
)
)
{
...
...
bridges/source/remote/urp/urp_propertyobject.cxx
Dosyayı görüntüle @
f379da21
...
...
@@ -761,7 +761,7 @@ void SAL_CALL PropertyObject::implCommitChange( uno_Sequence *pSequence, uno_Any
{
InvalidProtocolChangeException
exception
;
Type
type
=
getCppuType
(
&
exception
);
exception
.
Message
=
OUString
::
createFromAscii
(
"urp: unknown Property "
);
exception
.
Message
=
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"urp: unknown Property "
)
);
exception
.
Message
+=
pP
[
i
].
Name
;
exception
.
invalidProperty
=
pP
[
i
];
exception
.
reason
=
1
;
...
...
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