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
dcee23b7
Kaydet (Commit)
dcee23b7
authored
May 20, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cppcheck: noExplicitConstructor
Change-Id: Idcf5460ec59cfb6f13055652c094d460c15da5ed
üst
484759aa
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
15 additions
and
14 deletions
+15
-14
xml_byteseq.cxx
xmlscript/source/xml_helper/xml_byteseq.cxx
+2
-2
exp_share.hxx
xmlscript/source/xmldlg_imexp/exp_share.hxx
+3
-3
xmldlg_addfunc.cxx
xmlscript/source/xmldlg_imexp/xmldlg_addfunc.cxx
+3
-2
imp_share.hxx
xmlscript/source/xmlmod_imexp/imp_share.hxx
+1
-1
certificatecontainer.hxx
xmlsecurity/source/component/certificatecontainer.hxx
+2
-2
documentdigitalsignatures.hxx
xmlsecurity/source/component/documentdigitalsignatures.hxx
+1
-1
macrosecurity.cxx
xmlsecurity/source/dialogs/macrosecurity.cxx
+1
-1
encryptionengine.hxx
xmlsecurity/source/framework/encryptionengine.hxx
+1
-1
securityenvironment_mscryptimpl.hxx
...source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx
+1
-1
No files found.
xmlscript/source/xml_helper/xml_byteseq.cxx
Dosyayı görüntüle @
dcee23b7
...
...
@@ -38,7 +38,7 @@ class BSeqInputStream
sal_Int32
_nPos
;
public
:
inline
BSeqInputStream
(
ByteSequence
const
&
rSeq
)
explicit
BSeqInputStream
(
ByteSequence
const
&
rSeq
)
:
_seq
(
rSeq
)
,
_nPos
(
0
)
{}
...
...
@@ -103,7 +103,7 @@ class BSeqOutputStream
ByteSequence
*
_seq
;
public
:
inline
BSeqOutputStream
(
ByteSequence
*
seq
)
explicit
BSeqOutputStream
(
ByteSequence
*
seq
)
:
_seq
(
seq
)
{}
...
...
xmlscript/source/xmldlg_imexp/exp_share.hxx
Dosyayı görüntüle @
dcee23b7
...
...
@@ -56,7 +56,7 @@ struct Style
OUString
_id
;
Style
(
short
all_
)
explicit
Style
(
short
all_
)
:
_backgroundColor
(
0
)
,
_textColor
(
0
)
,
_textLineColor
(
0
)
...
...
@@ -94,7 +94,7 @@ class ElementDescriptor
css
::
uno
::
Reference
<
css
::
frame
::
XModel
>
_xDocument
;
public
:
inline
ElementDescriptor
(
ElementDescriptor
(
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
const
&
xProps
,
css
::
uno
::
Reference
<
css
::
beans
::
XPropertyState
>
const
&
xPropState
,
OUString
const
&
name
,
css
::
uno
::
Reference
<
css
::
frame
::
XModel
>
const
&
xDocument
)
...
...
@@ -103,7 +103,7 @@ public:
,
_xPropState
(
xPropState
)
,
_xDocument
(
xDocument
)
{}
inline
ElementDescriptor
(
explicit
ElementDescriptor
(
OUString
const
&
name
)
:
XMLElement
(
name
)
{}
...
...
xmlscript/source/xmldlg_imexp/xmldlg_addfunc.cxx
Dosyayı görüntüle @
dcee23b7
...
...
@@ -41,9 +41,10 @@ class InputStreamProvider
ByteSequence
_bytes
;
public
:
inline
InputStreamProvider
(
ByteSequence
const
&
rBytes
)
explicit
InputStreamProvider
(
ByteSequence
const
&
rBytes
)
:
_bytes
(
rBytes
)
{}
{
}
// XInputStreamProvider
virtual
Reference
<
io
::
XInputStream
>
SAL_CALL
createInputStream
()
...
...
xmlscript/source/xmlmod_imexp/imp_share.hxx
Dosyayı görüntüle @
dcee23b7
...
...
@@ -53,7 +53,7 @@ struct ModuleImport
sal_Int32
XMLNS_XLINK_UID
;
public
:
ModuleImport
(
ModuleDescriptor
&
rModuleDesc
)
explicit
ModuleImport
(
ModuleDescriptor
&
rModuleDesc
)
:
mrModuleDesc
(
rModuleDesc
)
,
XMLNS_SCRIPT_UID
(
0
)
,
XMLNS_LIBRARY_UID
(
0
)
...
...
xmlsecurity/source/component/certificatecontainer.hxx
Dosyayı görüntüle @
dcee23b7
...
...
@@ -45,8 +45,8 @@ class CertificateContainer : public ::cppu::WeakImplHelper2< css::lang::XService
public
:
CertificateContainer
(
const
css
::
uno
::
Reference
<
css
::
lang
::
XMultiServiceFactory
>&
)
{};
virtual
~
CertificateContainer
()
{};
explicit
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
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
security
::
CertificateContainerStatus
SAL_CALL
hasCertificate
(
const
OUString
&
url
,
const
OUString
&
certificate_name
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
...
...
xmlsecurity/source/component/documentdigitalsignatures.hxx
Dosyayı görüntüle @
dcee23b7
...
...
@@ -57,7 +57,7 @@ private:
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
security
::
DocumentSignatureInformation
>
ImplVerifySignatures
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
embed
::
XStorage
>&
rxStorage
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>&
xSignStream
,
DocumentSignatureMode
eMode
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
public
:
DocumentDigitalSignatures
(
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
uno
::
XComponentContext
>&
rxCtx
);
explicit
DocumentDigitalSignatures
(
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
uno
::
XComponentContext
>&
rxCtx
);
// for service registration...
static
OUString
GetImplementationName
()
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
);
...
...
xmlsecurity/source/dialogs/macrosecurity.cxx
Dosyayı görüntüle @
dcee23b7
...
...
@@ -359,7 +359,7 @@ void MacroSecurityTrustedSourcesTP::FillCertLB()
class
TrustCertLB
:
public
SvSimpleTable
{
public
:
TrustCertLB
(
SvSimpleTableContainer
&
rContainer
)
explicit
TrustCertLB
(
SvSimpleTableContainer
&
rContainer
)
:
SvSimpleTable
(
rContainer
,
0
)
{
}
...
...
xmlsecurity/source/framework/encryptionengine.hxx
Dosyayı görüntüle @
dcee23b7
...
...
@@ -72,7 +72,7 @@ protected:
sal_Int32
m_nIdOfBlocker
;
protected
:
EncryptionEngine
(
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
uno
::
XComponentContext
>
&
xContext
);
explicit
EncryptionEngine
(
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
uno
::
XComponentContext
>
&
xContext
);
virtual
~
EncryptionEngine
(){};
virtual
void
tryToPerform
(
)
...
...
xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx
Dosyayı görüntüle @
dcee23b7
...
...
@@ -84,7 +84,7 @@ class SecurityEnvironment_MSCryptImpl : public ::cppu::WeakImplHelper3<
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>
m_xServiceManager
;
public
:
SecurityEnvironment_MSCryptImpl
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>&
aFactory
)
;
explicit
SecurityEnvironment_MSCryptImpl
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>&
aFactory
)
;
virtual
~
SecurityEnvironment_MSCryptImpl
()
;
//Methods from XSecurityEnvironment
...
...
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