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
1e83da9a
Kaydet (Commit)
1e83da9a
authored
12 years ago
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
some more namespace cleanup
Change-Id: Ib1e80d717f199db8f8ac4181d4377a86d88e3244
üst
3a390f36
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
59 additions
and
90 deletions
+59
-90
AccessibleGridControl.hxx
...lity/inc/accessibility/extended/AccessibleGridControl.hxx
+0
-3
errobject.cxx
basic/source/classes/errobject.cxx
+1
-1
sb.cxx
basic/source/classes/sb.cxx
+1
-0
sbxmod.cxx
basic/source/classes/sbxmod.cxx
+1
-1
runtime.hxx
basic/source/inc/runtime.hxx
+2
-6
methods.cxx
basic/source/runtime/methods.cxx
+2
-0
methods1.cxx
basic/source/runtime/methods1.cxx
+2
-1
Tickmarks.hxx
chart2/source/view/axes/Tickmarks.hxx
+0
-5
Tickmarks_Equidistant.hxx
chart2/source/view/axes/Tickmarks_Equidistant.hxx
+0
-5
VCartesianAxis.cxx
chart2/source/view/axes/VCartesianAxis.cxx
+1
-0
VCartesianAxis.hxx
chart2/source/view/axes/VCartesianAxis.hxx
+1
-5
XMLTextFrameHyperlinkContext.cxx
xmloff/source/text/XMLTextFrameHyperlinkContext.cxx
+2
-2
txtparaimphint.hxx
xmloff/source/text/txtparaimphint.hxx
+26
-31
certificatecontainer.cxx
xmlsecurity/source/component/certificatecontainer.cxx
+2
-1
certificatecontainer.hxx
xmlsecurity/source/component/certificatecontainer.hxx
+17
-28
registerservices.cxx
xmlsecurity/source/component/registerservices.cxx
+1
-1
No files found.
accessibility/inc/accessibility/extended/AccessibleGridControl.hxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef ACCESSIBILITY_EXT_ACCESSIBLEGRIDCONTROL_HXX
#define ACCESSIBILITY_EXT_ACCESSIBLEGRIDCONTROL_HXX
...
...
@@ -28,8 +27,6 @@
#include <memory>
using
namespace
::
svt
::
table
;
// ============================================================================
namespace
accessibility
{
...
...
This diff is collapsed.
Click to expand it.
basic/source/classes/errobject.cxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -173,7 +173,7 @@ void ErrObject::setData( const uno::Any& Number, const uno::Any& Source, const u
}
// SbxErrObject
SbxErrObject
::
SbxErrObject
(
const
OUString
&
rName
,
const
Any
&
rUnoObj
)
SbxErrObject
::
SbxErrObject
(
const
OUString
&
rName
,
const
uno
::
Any
&
rUnoObj
)
:
SbUnoObject
(
rName
,
rUnoObj
)
,
m_pErrObject
(
NULL
)
{
...
...
This diff is collapsed.
Click to expand it.
basic/source/classes/sb.cxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -57,6 +57,7 @@ TYPEINIT1(StarBASIC,SbxObject)
#define RTLNAME "@SBRTL"
// i#i68894#
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
com
::
sun
::
star
::
uno
;
using
com
::
sun
::
star
::
uno
::
Reference
;
using
com
::
sun
::
star
::
uno
::
Any
;
using
com
::
sun
::
star
::
uno
::
UNO_QUERY
;
...
...
This diff is collapsed.
Click to expand it.
basic/source/classes/sbxmod.cxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -74,7 +74,7 @@ using namespace com::sun::star::lang;
using
namespace
com
::
sun
::
star
::
reflection
;
using
namespace
com
::
sun
::
star
::
beans
;
using
namespace
com
::
sun
::
star
::
script
;
using
namespace
com
::
sun
::
star
::
uno
;
#include <com/sun/star/script/XLibraryContainer.hpp>
#include <com/sun/star/awt/DialogProvider.hpp>
...
...
This diff is collapsed.
Click to expand it.
basic/source/inc/runtime.hxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -35,10 +35,6 @@
#include <com/sun/star/container/XEnumeration.hpp>
#include <unotools/localedatawrapper.hxx>
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
lang
;
using
namespace
com
::
sun
::
star
::
container
;
class
SbiInstance
;
// active StarBASIC process
class
SbiRuntime
;
// active StarBASIC procedure instance
...
...
@@ -70,7 +66,7 @@ struct SbiForStack { // for/next stack:
sal_Int32
*
pArrayCurIndices
;
sal_Int32
*
pArrayLowerBounds
;
sal_Int32
*
pArrayUpperBounds
;
Reference
<
XEnumeration
>
xEnumeration
;
css
::
uno
::
Reference
<
css
::
container
::
XEnumeration
>
xEnumeration
;
SbiForStack
(
void
)
:
pArrayCurIndices
(
NULL
)
...
...
@@ -115,7 +111,7 @@ public:
OUString
sFullNameToBeChecked
;
WildCard
*
pWildCard
;
Sequence
<
OUString
>
aDirSeq
;
css
::
uno
::
Sequence
<
OUString
>
aDirSeq
;
SbiRTLData
();
~
SbiRTLData
();
...
...
This diff is collapsed.
Click to expand it.
basic/source/runtime/methods.cxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -57,6 +57,8 @@
using
namespace
comphelper
;
using
namespace
osl
;
using
namespace
com
::
sun
::
star
;
using
namespace
com
::
sun
::
star
::
lang
;
using
namespace
com
::
sun
::
star
::
uno
;
#include "date.hxx"
#include "stdobj.hxx"
...
...
This diff is collapsed.
Click to expand it.
basic/source/runtime/methods1.cxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -55,9 +55,10 @@
#include <com/sun/star/sheet/XFunctionAccess.hpp>
using
namespace
comphelper
;
using
namespace
com
::
sun
::
star
::
i18n
;
using
namespace
com
::
sun
::
star
::
lang
;
using
namespace
com
::
sun
::
star
::
sheet
;
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
i18n
;
void
unoToSbxValue
(
SbxVariable
*
pVar
,
const
Any
&
aValue
);
Any
sbxToUnoValue
(
SbxVariable
*
pVar
,
const
Type
&
rType
,
com
::
sun
::
star
::
beans
::
Property
*
pUnoProperty
=
NULL
);
...
...
This diff is collapsed.
Click to expand it.
chart2/source/view/axes/Tickmarks.hxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -34,11 +34,6 @@ namespace chart
{
//.............................................................................
using
::
basegfx
::
B2DVector
;
//-----------------------------------------------------------------------------
/**
*/
struct
TickInfo
{
double
fScaledTickValue
;
...
...
This diff is collapsed.
Click to expand it.
chart2/source/view/axes/Tickmarks_Equidistant.hxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -26,11 +26,6 @@ namespace chart
{
//.............................................................................
using
::
basegfx
::
B2DVector
;
//-----------------------------------------------------------------------------
/**
*/
class
EquidistantTickIter
:
public
TickIter
{
public
:
...
...
This diff is collapsed.
Click to expand it.
chart2/source/view/axes/VCartesianAxis.cxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -51,6 +51,7 @@ namespace chart
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
com
::
sun
::
star
::
chart2
;
using
namespace
::
rtl
::
math
;
using
::
basegfx
::
B2DVector
;
using
::
com
::
sun
::
star
::
uno
::
Reference
;
//-----------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
chart2/source/view/axes/VCartesianAxis.hxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -29,10 +29,6 @@ namespace chart
{
//.............................................................................
//-----------------------------------------------------------------------------
/**
*/
class
VCartesianAxis
:
public
VAxisBase
{
//-------------------------------------------------------------------------
...
...
@@ -97,7 +93,7 @@ public:
double
fLogicY
;
double
fLogicZ
;
B2DVector
aScreenPos
;
::
basegfx
::
B2DVector
aScreenPos
;
};
protected
:
//methods
...
...
This diff is collapsed.
Click to expand it.
xmloff/source/text/XMLTextFrameHyperlinkContext.cxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sax/tools/converter.hxx>
#include <xmloff/xmlimp.hxx>
...
...
@@ -30,13 +29,14 @@
// OD 2004-04-21 #i26791#
#include <txtparaimphint.hxx>
using
namespace
::
com
::
sun
::
star
::
uno
;
using
namespace
::
com
::
sun
::
star
::
text
;
using
namespace
::
com
::
sun
::
star
::
xml
::
sax
;
using
namespace
::
com
::
sun
::
star
::
beans
;
using
namespace
::
xmloff
::
token
;
namespace
drawing
=
com
::
sun
::
star
::
drawing
;
TYPEINIT1
(
XMLTextFrameHyperlinkContext
,
SvXMLImportContext
);
XMLTextFrameHyperlinkContext
::
XMLTextFrameHyperlinkContext
(
...
...
This diff is collapsed.
Click to expand it.
xmloff/source/text/txtparaimphint.hxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -25,11 +25,6 @@
#include "XMLTextFrameContext.hxx"
#include <xmloff/XMLEventsImportContext.hxx>
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
com
::
sun
::
star
::
uno
;
using
namespace
::
com
::
sun
::
star
::
text
;
using
namespace
::
xmloff
::
token
;
// ---------------------------------------------------------------------
#define XML_HINT_STYLE 1
...
...
@@ -42,16 +37,16 @@ using namespace ::xmloff::token;
class
XMLHint_Impl
{
Reference
<
XTextRange
>
xStart
;
Reference
<
XTextRange
>
xEnd
;
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
xStart
;
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
xEnd
;
sal_uInt8
nType
;
public
:
XMLHint_Impl
(
sal_uInt8
nTyp
,
const
Reference
<
XTextRange
>
&
rS
,
const
Reference
<
XTextRange
>
&
rE
)
:
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rS
,
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rE
)
:
xStart
(
rS
),
xEnd
(
rE
),
nType
(
nTyp
)
...
...
@@ -59,7 +54,7 @@ public:
}
XMLHint_Impl
(
sal_uInt8
nTyp
,
const
Reference
<
XTextRange
>
&
rS
)
:
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rS
)
:
xStart
(
rS
),
nType
(
nTyp
)
{
...
...
@@ -67,9 +62,9 @@ public:
virtual
~
XMLHint_Impl
()
{}
const
Reference
<
XTextRange
>
&
GetStart
()
const
{
return
xStart
;
}
const
Reference
<
XTextRange
>
&
GetEnd
()
const
{
return
xEnd
;
}
void
SetEnd
(
const
Reference
<
XTextRange
>
&
rPos
)
{
xEnd
=
rPos
;
}
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
GetStart
()
const
{
return
xStart
;
}
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
GetEnd
()
const
{
return
xEnd
;
}
void
SetEnd
(
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rPos
)
{
xEnd
=
rPos
;
}
// We don't use virtual methods to differ between the sub classes,
// because this seems to be to expensive if compared to inline methods.
...
...
@@ -87,7 +82,7 @@ class XMLStyleHint_Impl : public XMLHint_Impl
public
:
XMLStyleHint_Impl
(
const
OUString
&
rStyleName
,
const
Reference
<
XTextRange
>
&
rPos
)
:
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rPos
)
:
XMLHint_Impl
(
XML_HINT_STYLE
,
rPos
,
rPos
),
sStyleName
(
rStyleName
)
{
...
...
@@ -104,7 +99,7 @@ class XMLReferenceHint_Impl : public XMLHint_Impl
public
:
XMLReferenceHint_Impl
(
const
OUString
&
rRefName
,
const
Reference
<
XTextRange
>
&
rPos
)
:
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rPos
)
:
XMLHint_Impl
(
XML_HINT_REFERENCE
,
rPos
,
rPos
),
sRefName
(
rRefName
)
{
...
...
@@ -126,7 +121,7 @@ class XMLHyperlinkHint_Impl : public XMLHint_Impl
public
:
XMLHyperlinkHint_Impl
(
const
Reference
<
XTextRange
>
&
rPos
)
:
XMLHyperlinkHint_Impl
(
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rPos
)
:
XMLHint_Impl
(
XML_HINT_HYPERLINK
,
rPos
,
rPos
),
pEvents
(
NULL
)
{
...
...
@@ -163,22 +158,22 @@ public:
class
XMLIndexMarkHint_Impl
:
public
XMLHint_Impl
{
const
Reference
<
beans
::
XPropertySet
>
xIndexMarkPropSet
;
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
xIndexMarkPropSet
;
const
OUString
sID
;
public
:
XMLIndexMarkHint_Impl
(
const
Reference
<
beans
::
XPropertySet
>
&
rPropSet
,
const
Reference
<
XTextRange
>
&
rPos
)
:
XMLIndexMarkHint_Impl
(
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
&
rPropSet
,
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rPos
)
:
XMLHint_Impl
(
XML_HINT_INDEX_MARK
,
rPos
,
rPos
),
xIndexMarkPropSet
(
rPropSet
),
sID
()
{
}
XMLIndexMarkHint_Impl
(
const
Reference
<
beans
::
XPropertySet
>
&
rPropSet
,
const
Reference
<
XTextRange
>
&
rPos
,
XMLIndexMarkHint_Impl
(
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
&
rPropSet
,
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rPos
,
OUString
sIDString
)
:
XMLHint_Impl
(
XML_HINT_INDEX_MARK
,
rPos
,
rPos
),
xIndexMarkPropSet
(
rPropSet
),
...
...
@@ -188,7 +183,7 @@ public:
virtual
~
XMLIndexMarkHint_Impl
()
{}
const
Reference
<
beans
::
XPropertySet
>
&
GetMark
()
const
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
&
GetMark
()
const
{
return
xIndexMarkPropSet
;
}
const
OUString
&
GetID
()
const
{
return
sID
;
}
};
...
...
@@ -202,7 +197,7 @@ class XMLTextFrameHint_Impl : public XMLHint_Impl
public
:
XMLTextFrameHint_Impl
(
SvXMLImportContext
*
pContext
,
const
Reference
<
XTextRange
>
&
rPos
)
:
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rPos
)
:
XMLHint_Impl
(
XML_HINT_TEXT_FRAME
,
rPos
,
rPos
),
xContext
(
pContext
)
{
...
...
@@ -212,9 +207,9 @@ public:
{
}
Reference
<
XTextContent
>
GetTextContent
()
const
css
::
uno
::
Reference
<
css
::
text
::
XTextContent
>
GetTextContent
()
const
{
Reference
<
XTextContent
>
xTxt
;
css
::
uno
::
Reference
<
css
::
text
::
XTextContent
>
xTxt
;
SvXMLImportContext
*
pContext
=
&
xContext
;
if
(
pContext
->
ISA
(
XMLTextFrameContext
)
)
xTxt
=
PTR_CAST
(
XMLTextFrameContext
,
pContext
)
->
GetTextContent
();
...
...
@@ -226,9 +221,9 @@ public:
}
// Frame "to character": anchor moves from first to last char after saving (#i33242#)
Reference
<
drawing
::
XShape
>
GetShape
()
const
css
::
uno
::
Reference
<
css
::
drawing
::
XShape
>
GetShape
()
const
{
Reference
<
drawing
::
XShape
>
xShape
;
css
::
uno
::
Reference
<
css
::
drawing
::
XShape
>
xShape
;
SvXMLImportContext
*
pContext
=
&
xContext
;
if
(
pContext
->
ISA
(
XMLTextFrameContext
)
)
xShape
=
PTR_CAST
(
XMLTextFrameContext
,
pContext
)
->
GetShape
();
...
...
@@ -243,11 +238,11 @@ public:
sal_Bool
bRet
=
sal_False
;
SvXMLImportContext
*
pContext
=
&
xContext
;
if
(
pContext
->
ISA
(
XMLTextFrameContext
)
)
bRet
=
TextContentAnchorType_AT_CHARACTER
==
bRet
=
css
::
text
::
TextContentAnchorType_AT_CHARACTER
==
PTR_CAST
(
XMLTextFrameContext
,
pContext
)
->
GetAnchorType
();
else
if
(
pContext
->
ISA
(
XMLTextFrameHyperlinkContext
)
)
bRet
=
TextContentAnchorType_AT_CHARACTER
==
bRet
=
css
::
text
::
TextContentAnchorType_AT_CHARACTER
==
PTR_CAST
(
XMLTextFrameHyperlinkContext
,
pContext
)
->
GetAnchorType
();
return
bRet
;
...
...
@@ -262,7 +257,7 @@ class XMLDrawHint_Impl : public XMLHint_Impl
public
:
XMLDrawHint_Impl
(
SvXMLShapeContext
*
pContext
,
const
Reference
<
XTextRange
>
&
rPos
)
:
const
css
::
uno
::
Reference
<
css
::
text
::
XTextRange
>
&
rPos
)
:
XMLHint_Impl
(
XML_HINT_DRAW
,
rPos
,
rPos
),
xContext
(
pContext
)
{
...
...
@@ -273,7 +268,7 @@ public:
}
// Frame "to character": anchor moves from first to last char after saving (#i33242#)
Reference
<
drawing
::
XShape
>
GetShape
()
const
css
::
uno
::
Reference
<
css
::
drawing
::
XShape
>
GetShape
()
const
{
return
static_cast
<
SvXMLShapeContext
*>
(
&
xContext
)
->
getShape
();
}
...
...
This diff is collapsed.
Click to expand it.
xmlsecurity/source/component/certificatecontainer.cxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -21,9 +21,10 @@
#include <sal/config.h>
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
com
::
sun
::
star
::
lang
;
using
namespace
::
com
::
sun
::
star
::
uno
;
sal_Bool
CertificateContainer
::
searchMap
(
const
OUString
&
url
,
const
OUString
&
certificate_name
,
Map
&
_certMap
)
{
...
...
This diff is collapsed.
Click to expand it.
xmlsecurity/source/component/certificatecontainer.hxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -27,19 +27,12 @@
#include <cppuhelper/implbase2.hxx>
#include <com/sun/star/security/XCertificateContainer.hpp>
#include <com/sun/star/security/CertificateContainerStatus.hpp>
#include <vector>
#include <map>
using
namespace
com
::
sun
::
star
;
using
namespace
cppu
;
using
namespace
::
com
::
sun
::
star
::
uno
;
using
namespace
::
com
::
sun
::
star
::
lang
;
class
CertificateContainer
:
public
::
cppu
::
WeakImplHelper2
<
::
com
::
sun
::
star
::
lang
::
XServiceInfo
,
::
com
::
sun
::
star
::
security
::
XCertificateContainer
>
class
CertificateContainer
:
public
::
cppu
::
WeakImplHelper2
<
css
::
lang
::
XServiceInfo
,
css
::
security
::
XCertificateContainer
>
{
private
:
typedef
std
::
map
<
OUString
,
OUString
>
Map
;
...
...
@@ -47,39 +40,35 @@ class CertificateContainer : public ::cppu::WeakImplHelper2< ::com::sun::star::l
Map
certTrustMap
;
::
sal_Bool
SAL_CALL
searchMap
(
const
OUString
&
url
,
const
OUString
&
certificate_name
,
Map
&
_certMap
);
virtual
::
sal_Bool
SAL_CALL
isTemporaryCertificate
(
const
OUString
&
url
,
const
OUString
&
certificate_name
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
sal_Bool
SAL_CALL
isCertificateTrust
(
const
OUString
&
url
,
const
OUString
&
certificate_name
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
sal_Bool
SAL_CALL
isTemporaryCertificate
(
const
OUString
&
url
,
const
OUString
&
certificate_name
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
::
sal_Bool
SAL_CALL
isCertificateTrust
(
const
OUString
&
url
,
const
OUString
&
certificate_name
)
throw
(
css
::
uno
::
RuntimeException
);
public
:
CertificateContainer
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>&
)
{};
CertificateContainer
(
const
css
::
uno
::
Reference
<
css
::
lang
::
XMultiServiceFactory
>&
)
{};
virtual
~
CertificateContainer
(){};
virtual
::
sal_Bool
SAL_CALL
addCertificate
(
const
OUString
&
url
,
const
OUString
&
certificate_name
,
::
sal_Bool
trust
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
security
::
CertificateContainerStatus
SAL_CALL
hasCertificate
(
const
OUString
&
url
,
const
OUString
&
certificate_name
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
sal_Bool
SAL_CALL
addCertificate
(
const
OUString
&
url
,
const
OUString
&
certificate_name
,
::
sal_Bool
trust
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
css
::
security
::
CertificateContainerStatus
SAL_CALL
hasCertificate
(
const
OUString
&
url
,
const
OUString
&
certificate_name
)
throw
(
css
::
uno
::
RuntimeException
);
// provide factory
static
OUString
SAL_CALL
impl_getStaticImplementationName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
static
OUString
SAL_CALL
impl_getStaticImplementationName
(
)
throw
(
css
::
uno
::
RuntimeException
);
static
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>
SAL_CALL
impl_getStaticSupportedServiceNames
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
static
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
impl_getStaticSupportedServiceNames
(
)
throw
(
css
::
uno
::
RuntimeException
);
static
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XInterface
>
SAL_CALL
impl_createInstance
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>&
xServiceManager
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
static
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
SAL_CALL
impl_createInstance
(
const
css
::
uno
::
Reference
<
css
::
lang
::
XMultiServiceFactory
>&
xServiceManager
)
throw
(
css
::
uno
::
RuntimeException
);
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
(
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
::
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
css
::
uno
::
RuntimeException
);
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This diff is collapsed.
Click to expand it.
xmlsecurity/source/component/registerservices.cxx
Dosyayı görüntüle @
1e83da9a
...
...
@@ -22,11 +22,11 @@
#include <cppuhelper/factory.hxx>
#include <documentdigitalsignatures.hxx>
#include <certificatecontainer.hxx>
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
com
::
sun
::
star
::
uno
;
extern
"C"
{
...
...
This diff is collapsed.
Click to expand it.
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