just for non exported things

Change-Id: I448d0009d7c8ffec64fdab76897e8684afe7fcd7
This commit is contained in:
Caolán McNamara
2017-01-23 10:22:21 +00:00
parent aac6bb5bb3
commit 936fd770fa
8 changed files with 21 additions and 0 deletions

View File

@@ -59,6 +59,8 @@ public:
const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList,
rtl_TextEncoding eDfltEnc );
~XMLFontStylesContext() override;
const SvXMLTokenMap& GetFontStyleAttrTokenMap() const
{
return *pFontStyleAttrTokenMap;

View File

@@ -30,10 +30,14 @@ namespace com { namespace sun { namespace star {
class XMLOFF_DLLPUBLIC XMLTextTableContext : public SvXMLImportContext
{
public:
XMLTextTableContext( SvXMLImport& rImport,
sal_uInt16 nPrfx,
const OUString& rLName );
virtual ~XMLTextTableContext() override;
};
#endif

View File

@@ -63,11 +63,13 @@ protected:
public:
XMLTextStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
const OUString& rLName,
const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList,
SvXMLStylesContext& rStyles, sal_uInt16 nFamily,
bool bDefaultStyle = false );
~XMLTextStyleContext() override;
virtual SvXMLImportContext *CreateChildContext(
sal_uInt16 nPrefix,

View File

@@ -66,6 +66,8 @@ public:
const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList,
bool bOutl = false );
~SvxXMLListStyleContext() override;
virtual SvXMLImportContext *CreateChildContext(
sal_uInt16 nPrefix,
const OUString& rLocalName,

View File

@@ -377,6 +377,8 @@ XMLFontStylesContext::XMLFontStylesContext( SvXMLImport& rImport,
{
}
XMLFontStylesContext::~XMLFontStylesContext() {}
bool XMLFontStylesContext::FillProperties( const OUString& rName,
::std::vector< XMLPropertyState > &rProps,
sal_Int32 nFamilyNameIdx,

View File

@@ -1018,6 +1018,8 @@ SvxXMLListStyleContext::SvxXMLListStyleContext( SvXMLImport& rImport,
{
}
SvxXMLListStyleContext::~SvxXMLListStyleContext() {}
SvXMLImportContext *SvxXMLListStyleContext::CreateChildContext(
sal_uInt16 nPrefix,
const OUString& rLocalName,

View File

@@ -31,4 +31,8 @@ XMLTextTableContext::XMLTextTableContext(
{
}
XMLTextTableContext::~XMLTextTableContext()
{
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -149,6 +149,9 @@ XMLTextStyleContext::XMLTextStyleContext( SvXMLImport& rImport,
{
}
XMLTextStyleContext::~XMLTextStyleContext()
{}
SvXMLImportContext *XMLTextStyleContext::CreateChildContext(
sal_uInt16 nPrefix,
const OUString& rLocalName,