summaryrefslogtreecommitdiffstats
path: root/writerfilter/source/rtftok
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-04 16:28:49 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-08-05 09:39:22 +0000
commit403c13487c36f4200adf0986c5d11398f719cd7a (patch)
tree21a4acf87dce1e6c8772f5cbcff3c2a3de21f4ba /writerfilter/source/rtftok
parentsw: use std::unique_ptr in docxattributeoutput (diff)
downloadcore-403c13487c36f4200adf0986c5d11398f719cd7a.tar.gz
core-403c13487c36f4200adf0986c5d11398f719cd7a.zip
loplugin:unusedmethods
Change-Id: I6801618efb5a66d24156fa429e026acb6ca03aba Reviewed-on: https://gerrit.libreoffice.org/17506 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'writerfilter/source/rtftok')
-rw-r--r--writerfilter/source/rtftok/rtfdocumentimpl.cxx1
-rw-r--r--writerfilter/source/rtftok/rtfdocumentimpl.hxx3
-rw-r--r--writerfilter/source/rtftok/rtffly.hxx15
3 files changed, 0 insertions, 19 deletions
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 7f8f7612b9d7..d398153a2c64 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -260,7 +260,6 @@ RTFDocumentImpl::RTFDocumentImpl(uno::Reference<uno::XComponentContext> const& x
m_aStyleTableEntries(),
m_nCurrentStyleIndex(0),
m_bFormField(false),
- m_bIsInFrame(false),
m_aUnicodeBuffer(),
m_aHexBuffer(),
m_bMathNor(false),
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.hxx b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
index ae320adf5425..b610de05293e 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.hxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
@@ -360,7 +360,6 @@ public:
{
return *m_pMapperStream;
}
- void setSubstream(bool bIsSubtream);
void setSuperstream(RTFDocumentImpl* pSuperstream);
void setStreamType(Id nId);
void setAuthor(OUString& rAuthor);
@@ -564,8 +563,6 @@ private:
RTFReferenceTable::Entries_t m_aStyleTableEntries;
int m_nCurrentStyleIndex;
bool m_bFormField;
- /// If a frame start token is already sent to dmapper (nesting them is not OK).
- bool m_bIsInFrame;
// Unicode characters are collected here so we don't have to send them one by one.
OUStringBuffer m_aUnicodeBuffer;
/// Same for hex characters.
diff --git a/writerfilter/source/rtftok/rtffly.hxx b/writerfilter/source/rtftok/rtffly.hxx
index e33927a2e14a..505002f95af4 100644
--- a/writerfilter/source/rtftok/rtffly.hxx
+++ b/writerfilter/source/rtftok/rtffly.hxx
@@ -71,11 +71,6 @@ public:
return nAnchor;
}
- sal_uInt16 GetValue() const
- {
- return nVal;
- }
-
private:
sal_uInt16 nVal;
};
@@ -99,11 +94,6 @@ public:
return OSL_LONIBBLE(OSL_HIBYTE(nVal));
}
- sal_uInt16 GetRelAnchor() const
- {
- return OSL_HINIBBLE(OSL_LOBYTE(nVal));
- }
-
sal_Int32 GetAlign() const
{
sal_Int32 nAlign = 0;
@@ -148,11 +138,6 @@ public:
return nAnchor;
}
- sal_uInt16 GetValue() const
- {
- return nVal;
- }
-
private:
sal_uInt16 nVal;
};