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
a21a0b6d
Kaydet (Commit)
a21a0b6d
authored
May 04, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
writerfilter: noExplicitConstructor cppcheck fixes
Change-Id: I4195fc8a7736a29a6f08d0745f39a0907a5545e8
üst
8e6527a9
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
33 additions
and
40 deletions
+33
-40
TagLogger.hxx
writerfilter/source/dmapper/TagLogger.hxx
+1
-1
TblStylePrHandler.hxx
writerfilter/source/dmapper/TblStylePrHandler.hxx
+1
-1
TrackChangesHandler.hxx
writerfilter/source/dmapper/TrackChangesHandler.hxx
+1
-1
RtfFilter.cxx
writerfilter/source/filter/RtfFilter.cxx
+1
-1
WriterFilter.cxx
writerfilter/source/filter/WriterFilter.cxx
+1
-1
WriterFilterDetection.cxx
writerfilter/source/filter/WriterFilterDetection.cxx
+1
-1
Handler.hxx
writerfilter/source/ooxml/Handler.hxx
+10
-10
OOXMLBinaryObjectReference.hxx
writerfilter/source/ooxml/OOXMLBinaryObjectReference.hxx
+1
-1
OOXMLFastContextHandler.hxx
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
+12
-19
OOXMLPropertySetImpl.hxx
writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
+4
-4
No files found.
writerfilter/source/dmapper/TagLogger.hxx
Dosyayı görüntüle @
a21a0b6d
...
...
@@ -39,7 +39,7 @@ namespace writerfilter
xmlTextWriterPtr
pWriter
;
const
char
*
pName
;
TagLogger
(
const
char
*
name
);
explicit
TagLogger
(
const
char
*
name
);
public
:
~
TagLogger
();
...
...
writerfilter/source/dmapper/TblStylePrHandler.hxx
Dosyayı görüntüle @
a21a0b6d
...
...
@@ -65,7 +65,7 @@ private:
virtual
void
lcl_sprm
(
Sprm
&
sprm
)
SAL_OVERRIDE
;
public
:
TblStylePrHandler
(
DomainMapper
&
rDMapper
);
explicit
TblStylePrHandler
(
DomainMapper
&
rDMapper
);
virtual
~
TblStylePrHandler
(
);
inline
PropertyMapPtr
getProperties
()
{
return
m_pProperties
;
};
...
...
writerfilter/source/dmapper/TrackChangesHandler.hxx
Dosyayı görüntüle @
a21a0b6d
...
...
@@ -32,7 +32,7 @@ class TrackChangesHandler : public LoggedProperties
virtual
void
lcl_sprm
(
Sprm
&
sprm
)
SAL_OVERRIDE
;
public
:
TrackChangesHandler
(
sal_Int32
nToken
);
explicit
TrackChangesHandler
(
sal_Int32
nToken
);
virtual
~
TrackChangesHandler
();
/// Compute the UNO properties for the track changes object based on the received tokens.
...
...
writerfilter/source/filter/RtfFilter.cxx
Dosyayı görüntüle @
a21a0b6d
...
...
@@ -53,7 +53,7 @@ class RtfFilter : public cppu::WeakImplHelper
uno
::
Reference
<
lang
::
XComponent
>
m_xSrcDoc
,
m_xDstDoc
;
public
:
RtfFilter
(
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
);
explicit
RtfFilter
(
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
);
virtual
~
RtfFilter
();
// XFilter
...
...
writerfilter/source/filter/WriterFilter.cxx
Dosyayı görüntüle @
a21a0b6d
...
...
@@ -96,7 +96,7 @@ protected:
uno
::
Reference
<
lang
::
XComponent
>
m_xSrcDoc
,
m_xDstDoc
;
public
:
WriterFilter
(
const
uno
::
Reference
<
uno
::
XComponentContext
>&
rxContext
)
explicit
WriterFilter
(
const
uno
::
Reference
<
uno
::
XComponentContext
>&
rxContext
)
:
m_xContext
(
rxContext
)
{}
virtual
~
WriterFilter
()
{}
...
...
writerfilter/source/filter/WriterFilterDetection.cxx
Dosyayı görüntüle @
a21a0b6d
...
...
@@ -36,7 +36,7 @@ class WriterFilterDetection : public cppu::WeakImplHelper
uno
::
Reference
<
uno
::
XComponentContext
>
m_xContext
;
public
:
WriterFilterDetection
(
const
uno
::
Reference
<
uno
::
XComponentContext
>&
rxContext
);
explicit
WriterFilterDetection
(
const
uno
::
Reference
<
uno
::
XComponentContext
>&
rxContext
);
virtual
~
WriterFilterDetection
();
//XExtendedFilterDetection
...
...
writerfilter/source/ooxml/Handler.hxx
Dosyayı görüntüle @
a21a0b6d
...
...
@@ -30,7 +30,7 @@ class OOXMLFootnoteHandler : public Properties
OOXMLFastContextHandler
*
mpFastContext
;
public
:
OOXMLFootnoteHandler
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFootnoteHandler
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFootnoteHandler
();
virtual
void
attribute
(
Id
name
,
Value
&
val
)
SAL_OVERRIDE
;
...
...
@@ -41,7 +41,7 @@ class OOXMLEndnoteHandler : public Properties
{
OOXMLFastContextHandler
*
mpFastContext
;
public
:
OOXMLEndnoteHandler
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLEndnoteHandler
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLEndnoteHandler
();
virtual
void
attribute
(
Id
name
,
Value
&
val
)
SAL_OVERRIDE
;
...
...
@@ -54,7 +54,7 @@ class OOXMLFooterHandler : public Properties
OUString
msStreamId
;
sal_Int32
mnType
;
public
:
OOXMLFooterHandler
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFooterHandler
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFooterHandler
()
{}
void
finalize
();
virtual
void
attribute
(
Id
name
,
Value
&
val
)
SAL_OVERRIDE
;
...
...
@@ -67,7 +67,7 @@ class OOXMLHeaderHandler : public Properties
OUString
msStreamId
;
sal_Int32
mnType
;
public
:
OOXMLHeaderHandler
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLHeaderHandler
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLHeaderHandler
()
{}
void
finalize
();
virtual
void
attribute
(
Id
name
,
Value
&
val
)
SAL_OVERRIDE
;
...
...
@@ -78,7 +78,7 @@ class OOXMLCommentHandler : public Properties
{
OOXMLFastContextHandler
*
mpFastContext
;
public
:
OOXMLCommentHandler
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLCommentHandler
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLCommentHandler
();
virtual
void
attribute
(
Id
name
,
Value
&
val
)
SAL_OVERRIDE
;
virtual
void
sprm
(
Sprm
&
sprm
)
SAL_OVERRIDE
;
...
...
@@ -89,7 +89,7 @@ class OOXMLOLEHandler : public Properties
OOXMLFastContextHandler
*
mpFastContext
;
public
:
OOXMLOLEHandler
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLOLEHandler
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLOLEHandler
();
virtual
void
attribute
(
Id
name
,
Value
&
val
)
SAL_OVERRIDE
;
...
...
@@ -101,7 +101,7 @@ class OOXMLEmbeddedFontHandler : public Properties
OOXMLFastContextHandler
*
mpFastContext
;
public
:
OOXMLEmbeddedFontHandler
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLEmbeddedFontHandler
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLEmbeddedFontHandler
();
virtual
void
attribute
(
Id
name
,
Value
&
val
)
SAL_OVERRIDE
;
...
...
@@ -113,7 +113,7 @@ class OOXMLBreakHandler : public Properties
sal_Int32
mnType
,
mnClear
;
Stream
&
mrStream
;
public
:
OOXMLBreakHandler
(
Stream
&
rStream
);
explicit
OOXMLBreakHandler
(
Stream
&
rStream
);
virtual
~
OOXMLBreakHandler
();
virtual
void
attribute
(
Id
name
,
Value
&
val
)
SAL_OVERRIDE
;
virtual
void
sprm
(
Sprm
&
sprm
)
SAL_OVERRIDE
;
...
...
@@ -123,7 +123,7 @@ class OOXMLPictureHandler : public Properties
{
OOXMLFastContextHandler
*
mpFastContext
;
public
:
OOXMLPictureHandler
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLPictureHandler
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLPictureHandler
();
virtual
void
attribute
(
Id
name
,
Value
&
val
)
SAL_OVERRIDE
;
...
...
@@ -137,7 +137,7 @@ class OOXMLHyperlinkHandler : public Properties
OUString
mURL
;
public
:
OOXMLHyperlinkHandler
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLHyperlinkHandler
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLHyperlinkHandler
();
virtual
void
attribute
(
Id
name
,
Value
&
val
)
SAL_OVERRIDE
;
...
...
writerfilter/source/ooxml/OOXMLBinaryObjectReference.hxx
Dosyayı görüntüle @
a21a0b6d
...
...
@@ -35,7 +35,7 @@ class OOXMLBinaryObjectReference :
void
read
();
public
:
OOXMLBinaryObjectReference
(
OOXMLStream
::
Pointer_t
pStream
);
explicit
OOXMLBinaryObjectReference
(
OOXMLStream
::
Pointer_t
pStream
);
virtual
~
OOXMLBinaryObjectReference
();
virtual
void
resolve
(
BinaryObj
&
rHandler
)
SAL_OVERRIDE
;
...
...
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
Dosyayı görüntüle @
a21a0b6d
...
...
@@ -50,11 +50,9 @@ public:
enum
ResourceEnum_t
{
UNKNOWN
,
STREAM
,
PROPERTIES
,
TABLE
,
SHAPE
};
OOXMLFastContextHandler
();
explicit
OOXMLFastContextHandler
(
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
const
&
context
);
explicit
OOXMLFastContextHandler
(
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
const
&
context
);
explicit
OOXMLFastContextHandler
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandler
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandler
();
...
...
@@ -254,7 +252,7 @@ private:
class
OOXMLFastContextHandlerStream
:
public
OOXMLFastContextHandler
{
public
:
OOXMLFastContextHandlerStream
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandlerStream
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandlerStream
();
virtual
ResourceEnum_t
getResource
()
const
SAL_OVERRIDE
{
return
STREAM
;
}
...
...
@@ -277,7 +275,7 @@ private:
class
OOXMLFastContextHandlerProperties
:
public
OOXMLFastContextHandler
{
public
:
OOXMLFastContextHandlerProperties
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandlerProperties
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandlerProperties
();
virtual
OOXMLValue
::
Pointer_t
getValue
()
const
SAL_OVERRIDE
;
...
...
@@ -313,7 +311,7 @@ class OOXMLFastContextHandlerPropertyTable :
public
OOXMLFastContextHandlerProperties
{
public
:
OOXMLFastContextHandlerPropertyTable
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandlerPropertyTable
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandlerPropertyTable
();
protected
:
...
...
@@ -327,8 +325,7 @@ class OOXMLFastContextHandlerValue :
public
OOXMLFastContextHandler
{
public
:
OOXMLFastContextHandlerValue
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandlerValue
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandlerValue
();
void
setValue
(
OOXMLValue
::
Pointer_t
pValue
);
...
...
@@ -351,7 +348,7 @@ protected:
class
OOXMLFastContextHandlerTable
:
public
OOXMLFastContextHandler
{
public
:
OOXMLFastContextHandlerTable
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandlerTable
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandlerTable
();
virtual
css
::
uno
::
Reference
<
css
::
xml
::
sax
::
XFastContextHandler
>
SAL_CALL
createFastChildContext
(
Token_t
Element
,
...
...
@@ -376,7 +373,7 @@ protected:
class
OOXMLFastContextHandlerXNote
:
public
OOXMLFastContextHandlerProperties
{
public
:
OOXMLFastContextHandlerXNote
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandlerXNote
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandlerXNote
();
void
checkId
(
OOXMLValue
::
Pointer_t
pValue
);
...
...
@@ -402,8 +399,7 @@ private:
class
OOXMLFastContextHandlerTextTableCell
:
public
OOXMLFastContextHandler
{
public
:
OOXMLFastContextHandlerTextTableCell
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandlerTextTableCell
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandlerTextTableCell
();
virtual
std
::
string
getType
()
const
SAL_OVERRIDE
{
return
"TextTableCell"
;
}
...
...
@@ -415,8 +411,7 @@ public:
class
OOXMLFastContextHandlerTextTableRow
:
public
OOXMLFastContextHandler
{
public
:
OOXMLFastContextHandlerTextTableRow
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandlerTextTableRow
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandlerTextTableRow
();
virtual
std
::
string
getType
()
const
SAL_OVERRIDE
{
return
"TextTableRow"
;
}
...
...
@@ -431,8 +426,7 @@ private:
class
OOXMLFastContextHandlerTextTable
:
public
OOXMLFastContextHandler
{
public
:
OOXMLFastContextHandlerTextTable
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandlerTextTable
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandlerTextTable
();
...
...
@@ -453,8 +447,7 @@ private:
bool
m_bShapeStarted
;
public
:
explicit
OOXMLFastContextHandlerShape
(
OOXMLFastContextHandler
*
pContext
);
explicit
OOXMLFastContextHandlerShape
(
OOXMLFastContextHandler
*
pContext
);
virtual
~
OOXMLFastContextHandlerShape
();
virtual
std
::
string
getType
()
const
SAL_OVERRIDE
{
return
"Shape"
;
}
...
...
writerfilter/source/ooxml/OOXMLPropertySetImpl.hxx
Dosyayı görüntüle @
a21a0b6d
...
...
@@ -189,7 +189,7 @@ class OOXMLPropertySetValue : public OOXMLValue
{
OOXMLPropertySet
::
Pointer_t
mpPropertySet
;
public
:
OOXMLPropertySetValue
(
OOXMLPropertySet
::
Pointer_t
pPropertySet
);
explicit
OOXMLPropertySetValue
(
OOXMLPropertySet
::
Pointer_t
pPropertySet
);
virtual
~
OOXMLPropertySetValue
();
virtual
writerfilter
::
Reference
<
Properties
>::
Pointer_t
getProperties
()
SAL_OVERRIDE
;
...
...
@@ -301,7 +301,7 @@ class OOXMLPropertySetEntryToString : public Properties
OUString
mStr
;
public
:
OOXMLPropertySetEntryToString
(
Id
nId
);
explicit
OOXMLPropertySetEntryToString
(
Id
nId
);
virtual
~
OOXMLPropertySetEntryToString
();
virtual
void
sprm
(
Sprm
&
rSprm
)
SAL_OVERRIDE
;
...
...
@@ -315,7 +315,7 @@ class OOXMLPropertySetEntryToInteger : public Properties
Id
mnId
;
int
mnValue
;
public
:
OOXMLPropertySetEntryToInteger
(
Id
nId
);
explicit
OOXMLPropertySetEntryToInteger
(
Id
nId
);
virtual
~
OOXMLPropertySetEntryToInteger
();
virtual
void
sprm
(
Sprm
&
rSprm
)
SAL_OVERRIDE
;
...
...
@@ -329,7 +329,7 @@ class OOXMLPropertySetEntryToBool : public Properties
Id
mnId
;
bool
mValue
;
public
:
OOXMLPropertySetEntryToBool
(
Id
nId
);
explicit
OOXMLPropertySetEntryToBool
(
Id
nId
);
virtual
~
OOXMLPropertySetEntryToBool
();
virtual
void
sprm
(
Sprm
&
rSprm
)
SAL_OVERRIDE
;
...
...
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