summaryrefslogtreecommitdiff
path: root/include/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-29 09:07:25 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-29 23:42:26 +0000
commit309574394bd4ae3e9e10e5ff0d64bdd7bbbc8b83 (patch)
treef8b8cea0a81bc74ca34e8bda2d0dfce939b28ce0 /include/tools
parent20deac4903fc0697477e855feeff482b3da234f9 (diff)
callcatcher: large newly detected unused methods post de-virtualization
i.e lots now able to be detected after... commit b44cbb26efe1d0b0950b1e1613e131b506dc3876 Author: Noel Grandin <noel@peralex.com> Date: Tue Jan 20 12:38:10 2015 +0200 new loplugin: change virtual methods to non-virtual Where we can prove that the virtual method is never overriden. In the case of pure-virtual methods, we remove the method entirely. Sometimes this leads to entire methods and fields being eliminated. Change-Id: I605e2fa56f7186c3d3a764f3cd30f5cf7f881f9d
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/inetmime.hxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/include/tools/inetmime.hxx b/include/tools/inetmime.hxx
index 2e1911f86e57..020e16a2e13c 100644
--- a/include/tools/inetmime.hxx
+++ b/include/tools/inetmime.hxx
@@ -718,19 +718,6 @@ protected:
/** Write a sequence of octets.
- @descr The supplied sequence of UCS-4 characters is interpreted as a
- sequence of octets. It is an error if any of the elements of the
- sequence has a numerical value greater than 255.
-
- @param pBegin Points to the start of the sequence, must not be null.
-
- @param pEnd Points past the end of the sequence, must be >= pBegin.
- */
- void writeSequence(const sal_uInt32 * pBegin,
- const sal_uInt32 * pEnd);
-
- /** Write a sequence of octets.
-
@descr The supplied sequence of Unicode characters is interpreted as
a sequence of octets. It is an error if any of the elements of the
sequence has a numerical value greater than 255.
@@ -782,18 +769,6 @@ public:
/** Write a sequence of octets.
- @descr The supplied sequence of UCS-4 characters is interpreted as a
- sequence of octets. It is an error if any of the elements of the
- sequence has a numerical value greater than 255.
-
- @param pBegin Points to the start of the sequence, must not be null.
-
- @param pEnd Points past the end of the sequence, must be >= pBegin.
- */
- inline void write(const sal_uInt32 * pBegin, const sal_uInt32 * pEnd);
-
- /** Write a sequence of octets.
-
@descr The supplied sequence of Unicode characters is interpreted as
a sequence of octets. It is an error if any of the elements of the
sequence has a numerical value greater than 255.
@@ -879,13 +854,6 @@ inline void INetMIMEOutputSink::write(const sal_Char * pBegin,
m_nColumn += pEnd - pBegin;
}
-inline void INetMIMEOutputSink::write(const sal_uInt32 * pBegin,
- const sal_uInt32 * pEnd)
-{
- writeSequence(pBegin, pEnd);
- m_nColumn += pEnd - pBegin;
-}
-
inline void INetMIMEOutputSink::write(const sal_Unicode * pBegin,
const sal_Unicode * pEnd)
{