summaryrefslogtreecommitdiff
path: root/unotools/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-09-12 10:19:34 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-09-12 16:21:59 +0200
commitd4c0bb0ce626fa24eddb886e3bf6444da292df25 (patch)
treef095e8188340bfab220b5508abb4c0cdd9f9a6f4 /unotools/source
parentebbaa05d83ffa06a657398430b50fdf135945f32 (diff)
use more concrete UNO classes in unotools
Change-Id: Iaf743ae040a3a7bd808bf3cac033197001c31b18 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173250 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Jenkins
Diffstat (limited to 'unotools/source')
-rw-r--r--unotools/source/config/configitem.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/unotools/source/config/configitem.cxx b/unotools/source/config/configitem.cxx
index a8e82ba7602a..b6c0b808dfd9 100644
--- a/unotools/source/config/configitem.cxx
+++ b/unotools/source/config/configitem.cxx
@@ -155,6 +155,9 @@ ConfigItem::ConfigItem(OUString aSubTree, ConfigItemMode nSetMode ) :
m_xHierarchyAccess = ConfigManager::getConfigManager().addConfigItem(*this);
}
+ConfigItem::ConfigItem(ConfigItem const &) = default;
+ConfigItem::ConfigItem(ConfigItem &&) = default;
+
ConfigItem::~ConfigItem()
{
suppress_fun_call_w_exception(RemoveChangesListener());