summaryrefslogtreecommitdiff
path: root/basegfx/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-09-02 08:55:22 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-09-02 20:22:38 +0200
commit782f4a674c0695a31591afa5cad656a7f8ca737a (patch)
tree331af6c85f0ee912133e5196c30f1106fd84b1f2 /basegfx/source
parent6842a50a8c33aba554454fc99d1bc40a07585a2c (diff)
drop unused MinimalSystemDependentDataManager
Change-Id: I6e5413bb79acac93abfb8398550c157e7b667a67 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101942 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'basegfx/source')
-rw-r--r--basegfx/source/tools/systemdependentdata.cxx38
1 files changed, 0 insertions, 38 deletions
diff --git a/basegfx/source/tools/systemdependentdata.cxx b/basegfx/source/tools/systemdependentdata.cxx
index 8dbe8915664f..e333ce473437 100644
--- a/basegfx/source/tools/systemdependentdata.cxx
+++ b/basegfx/source/tools/systemdependentdata.cxx
@@ -23,44 +23,6 @@ namespace basegfx
namespace basegfx
{
- MinimalSystemDependentDataManager::MinimalSystemDependentDataManager()
- : SystemDependentDataManager(),
- maSystemDependentDataReferences()
- {
- }
-
- MinimalSystemDependentDataManager::~MinimalSystemDependentDataManager()
- {
- }
-
- void MinimalSystemDependentDataManager::startUsage(basegfx::SystemDependentData_SharedPtr& rData)
- {
- if(rData)
- {
- maSystemDependentDataReferences.insert(rData);
- }
- }
-
- void MinimalSystemDependentDataManager::endUsage(basegfx::SystemDependentData_SharedPtr& rData)
- {
- if(rData)
- {
- maSystemDependentDataReferences.erase(rData);
- }
- }
-
- void MinimalSystemDependentDataManager::touchUsage(basegfx::SystemDependentData_SharedPtr& /* rData */)
- {
- }
-
- void MinimalSystemDependentDataManager::flushAll()
- {
- maSystemDependentDataReferences.clear();
- }
-} // namespace basegfx
-
-namespace basegfx
-{
SystemDependentData::SystemDependentData(
SystemDependentDataManager& rSystemDependentDataManager)
: mrSystemDependentDataManager(rSystemDependentDataManager),