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
3b4cbe25
Kaydet (Commit)
3b4cbe25
authored
Ara 17, 2010
tarafından
Hans-Joachim Lankenau
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
CWS-TOOLING: integrate CWS mib19
üst
d14d5a64
b8c0bb83
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
5 deletions
+15
-5
baside2b.cxx
basctl/source/basicide/baside2b.cxx
+3
-2
oleobjw.cxx
extensions/source/ole/oleobjw.cxx
+0
-0
oleobjw.hxx
extensions/source/ole/oleobjw.hxx
+12
-3
No files found.
basctl/source/basicide/baside2b.cxx
Dosyayı görüntüle @
3b4cbe25
...
@@ -1635,9 +1635,10 @@ void __EXPORT StackWindow::UpdateCalls()
...
@@ -1635,9 +1635,10 @@ void __EXPORT StackWindow::UpdateCalls()
aEntry
+=
pParam
->
aName
;
aEntry
+=
pParam
->
aName
;
}
}
aEntry
+=
'='
;
aEntry
+=
'='
;
if
(
pVar
->
GetType
()
&
SbxARRAY
)
SbxDataType
eType
=
pVar
->
GetType
();
if
(
eType
&
SbxARRAY
)
aEntry
+=
String
(
RTL_CONSTASCII_USTRINGPARAM
(
"..."
)
);
aEntry
+=
String
(
RTL_CONSTASCII_USTRINGPARAM
(
"..."
)
);
else
else
if
(
eType
!=
SbxOBJECT
)
aEntry
+=
pVar
->
GetString
();
aEntry
+=
pVar
->
GetString
();
if
(
nParam
<
(
pParams
->
Count
()
-
1
)
)
if
(
nParam
<
(
pParams
->
Count
()
-
1
)
)
aEntry
+=
String
(
RTL_CONSTASCII_USTRINGPARAM
(
", "
)
);
aEntry
+=
String
(
RTL_CONSTASCII_USTRINGPARAM
(
", "
)
);
...
...
extensions/source/ole/oleobjw.cxx
Dosyayı görüntüle @
3b4cbe25
This diff is collapsed.
Click to expand it.
extensions/source/ole/oleobjw.hxx
Dosyayı görüntüle @
3b4cbe25
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
#endif
#endif
#include <cppuhelper/implbase3.hxx>
#include <cppuhelper/implbase3.hxx>
#include <cppuhelper/implbase4.hxx>
#include <cppuhelper/implbase4.hxx>
#include <cppuhelper/implbase
6
.hxx>
#include <cppuhelper/implbase
7
.hxx>
#include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/bridge/oleautomation/XAutomationObject.hpp>
#include <com/sun/star/bridge/oleautomation/XAutomationObject.hpp>
...
@@ -58,6 +58,7 @@
...
@@ -58,6 +58,7 @@
#include <com/sun/star/script/XDefaultProperty.hpp>
#include <com/sun/star/script/XDefaultProperty.hpp>
#include <com/sun/star/script/XDefaultMethod.hpp>
#include <com/sun/star/script/XDefaultMethod.hpp>
#include <com/sun/star/script/XDirectInvocation.hpp>
#include <typelib/typedescription.hxx>
#include <typelib/typedescription.hxx>
#include "unoconversionutilities.hxx"
#include "unoconversionutilities.hxx"
...
@@ -81,7 +82,7 @@ typedef hash_multimap<OUString, unsigned int, hashOUString_Impl, equalOUString_I
...
@@ -81,7 +82,7 @@ typedef hash_multimap<OUString, unsigned int, hashOUString_Impl, equalOUString_I
// This class wraps an IDispatch and maps XInvocation calls to IDispatch calls on the wrapped object.
// This class wraps an IDispatch and maps XInvocation calls to IDispatch calls on the wrapped object.
// If m_TypeDescription is set then this class represents an UNO interface implemented in a COM component.
// If m_TypeDescription is set then this class represents an UNO interface implemented in a COM component.
// The interface is not a real interface in terms of an abstract class but is realized through IDispatch.
// The interface is not a real interface in terms of an abstract class but is realized through IDispatch.
class
IUnknownWrapper_Impl
:
public
WeakImplHelper
6
<
XInvocation
,
XBridgeSupplier2
,
XInitialization
,
XAutomationObject
,
XDefaultProperty
,
XDefaultMethod
>
,
class
IUnknownWrapper_Impl
:
public
WeakImplHelper
7
<
XInvocation
,
XBridgeSupplier2
,
XInitialization
,
XAutomationObject
,
XDefaultProperty
,
XDefaultMethod
,
XDirectInvocation
>
,
public
UnoConversionUtilities
<
IUnknownWrapper_Impl
>
public
UnoConversionUtilities
<
IUnknownWrapper_Impl
>
...
@@ -130,10 +131,18 @@ public:
...
@@ -130,10 +131,18 @@ public:
// XInitialization
// XInitialization
virtual
void
SAL_CALL
initialize
(
const
Sequence
<
Any
>&
aArguments
)
virtual
void
SAL_CALL
initialize
(
const
Sequence
<
Any
>&
aArguments
)
throw
(
Exception
,
RuntimeException
);
throw
(
Exception
,
RuntimeException
);
// XDefaultProperty
virtual
::
rtl
::
OUString
SAL_CALL
getDefaultPropertyName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
return
m_sDefaultMember
;
}
virtual
::
rtl
::
OUString
SAL_CALL
getDefaultPropertyName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
return
m_sDefaultMember
;
}
protected
:
// XDefaultMethod
virtual
::
rtl
::
OUString
SAL_CALL
getDefaultMethodName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
return
m_sDefaultMember
;
}
virtual
::
rtl
::
OUString
SAL_CALL
getDefaultMethodName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
return
m_sDefaultMember
;
}
// XDirectInvocation
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
directInvoke
(
const
::
rtl
::
OUString
&
aName
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
aParams
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
script
::
CannotConvertException
,
::
com
::
sun
::
star
::
reflection
::
InvocationTargetException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
sal_Bool
SAL_CALL
hasMember
(
const
::
rtl
::
OUString
&
aName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
protected
:
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
virtual
Any
invokeWithDispIdUnoTlb
(
const
OUString
&
sFunctionName
,
virtual
Any
invokeWithDispIdUnoTlb
(
const
OUString
&
sFunctionName
,
const
Sequence
<
Any
>&
Params
,
const
Sequence
<
Any
>&
Params
,
...
...
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