From 2addd7f17a9d799042ef18992ad29b582de3d6d6 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 7 Apr 2014 13:46:19 +0200 Subject: Clean up function declarations and some unused functions Change-Id: Id7ecd49ea03f225fc350a31437c32b4a738d7199 --- svl/source/misc/inethist.cxx | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'svl/source/misc') diff --git a/svl/source/misc/inethist.cxx b/svl/source/misc/inethist.cxx index 37e9c41fcba3..b199b01dceaf 100644 --- a/svl/source/misc/inethist.cxx +++ b/svl/source/misc/inethist.cxx @@ -22,6 +22,7 @@ #include #include +#include #include "rtl/instance.hxx" #include "rtl/crc.h" #include @@ -50,7 +51,7 @@ IMPL_PTRHINT (INetURLHistoryHint, const INetURLObject); * INetURLHistory_Impl interface. * *======================================================================*/ -class INetURLHistory_Impl +class INetURLHistory_Impl: private boost::noncopyable { /** head_entry. */ @@ -93,15 +94,6 @@ class INetURLHistory_Impl /** Comparison. */ - bool operator== (const hash_entry &rOther) const - { - return (m_nHash == rOther.m_nHash); - } - bool operator< (const hash_entry &rOther) const - { - return (m_nHash < rOther.m_nHash); - } - bool operator== (sal_uInt32 nHash) const { return (m_nHash == nHash); @@ -189,11 +181,6 @@ class INetURLHistory_Impl rThis.m_nPrev = nThis; } - /** Not implemented. - */ - INetURLHistory_Impl (const INetURLHistory_Impl&); - INetURLHistory_Impl& operator= (const INetURLHistory_Impl&); - public: INetURLHistory_Impl (void); ~INetURLHistory_Impl (void); -- cgit