summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/unotools/collatorwrapper.hxx2
-rw-r--r--include/unotools/compatibility.hxx1
-rw-r--r--include/unotools/configitem.hxx5
-rw-r--r--include/unotools/confignode.hxx4
-rw-r--r--unotools/source/config/compatibility.cxx4
-rw-r--r--unotools/source/i18n/collatorwrapper.cxx4
6 files changed, 5 insertions, 15 deletions
diff --git a/include/unotools/collatorwrapper.hxx b/include/unotools/collatorwrapper.hxx
index 823ba03aada0..77a22d63682a 100644
--- a/include/unotools/collatorwrapper.hxx
+++ b/include/unotools/collatorwrapper.hxx
@@ -37,8 +37,6 @@ class UNOTOOLS_DLLPUBLIC CollatorWrapper
CollatorWrapper (
const css::uno::Reference< css::uno::XComponentContext > &rxContext);
- ~CollatorWrapper();
-
sal_Int32
compareString (
const OUString& s1, const OUString& s2) const;
diff --git a/include/unotools/compatibility.hxx b/include/unotools/compatibility.hxx
index b48d453fb3fc..cc79b28da922 100644
--- a/include/unotools/compatibility.hxx
+++ b/include/unotools/compatibility.hxx
@@ -67,7 +67,6 @@ class UNOTOOLS_DLLPUBLIC SvtCompatibilityEntry
};
SvtCompatibilityEntry();
- ~SvtCompatibilityEntry();
static OUString getName( const Index rIdx );
diff --git a/include/unotools/configitem.hxx b/include/unotools/configitem.hxx
index 5a842a1193be..302fa0bdde5b 100644
--- a/include/unotools/configitem.hxx
+++ b/include/unotools/configitem.hxx
@@ -165,6 +165,11 @@ namespace utl
public:
virtual ~ConfigItem() override;
+ ConfigItem(ConfigItem const &) = default;
+ ConfigItem(ConfigItem &&) = default;
+ ConfigItem & operator =(ConfigItem const &) = default;
+ ConfigItem & operator =(ConfigItem &&) = default;
+
/** is called from the ConfigManager before application ends of from the
PropertyChangeListener if the sub tree broadcasts changes. */
virtual void Notify( const css::uno::Sequence<OUString>& aPropertyNames)=0;
diff --git a/include/unotools/confignode.hxx b/include/unotools/confignode.hxx
index 09c9bb266308..5bf4a1473da3 100644
--- a/include/unotools/confignode.hxx
+++ b/include/unotools/confignode.hxx
@@ -221,10 +221,6 @@ namespace utl
const bool i_bUpdatable
);
- /// copy ctor
- OConfigurationTreeRoot(const OConfigurationTreeRoot& _rSource)
- :OConfigurationNode(_rSource), m_xCommitter(_rSource.m_xCommitter) { }
-
/** open a new top-level configuration node
opens a new node which is the root if an own configuration sub tree. This is what "top level" means: The
diff --git a/unotools/source/config/compatibility.cxx b/unotools/source/config/compatibility.cxx
index de876fd30fec..b552dc7de5bd 100644
--- a/unotools/source/config/compatibility.cxx
+++ b/unotools/source/config/compatibility.cxx
@@ -67,10 +67,6 @@ SvtCompatibilityEntry::SvtCompatibilityEntry()
setDefaultEntry( false );
}
-SvtCompatibilityEntry::~SvtCompatibilityEntry()
-{
-}
-
OUString SvtCompatibilityEntry::getName( const Index rIdx )
{
static const char* sPropertyName[] =
diff --git a/unotools/source/i18n/collatorwrapper.cxx b/unotools/source/i18n/collatorwrapper.cxx
index 0b962264370c..4da1398e0636 100644
--- a/unotools/source/i18n/collatorwrapper.cxx
+++ b/unotools/source/i18n/collatorwrapper.cxx
@@ -30,10 +30,6 @@ CollatorWrapper::CollatorWrapper ( const uno::Reference< uno::XComponentContext
mxInternationalCollator = i18n::Collator::create( rxContext );
}
-CollatorWrapper::~CollatorWrapper()
-{
-}
-
sal_Int32
CollatorWrapper::compareString (const OUString& s1, const OUString& s2) const
{