summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-27 07:32:01 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-01-28 06:19:49 +0000
commitfe480d8136b204c8dc6c68916cce7e816f8b9c48 (patch)
tree656e9239fa6a93099148d3806c1af93007059769 /framework
parentd1c9bd13ec7af93f5368dfda6d6d3c955f0b0816 (diff)
remove unused typedefs
found with some minor modifications to find/find-unused-defines.sh Change-Id: I18cc479adedc7a0dada68a4aeef08300e62631dd Reviewed-on: https://gerrit.libreoffice.org/14194 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/classes/filtercachedata.hxx2
-rw-r--r--framework/inc/stdtypes.h8
-rw-r--r--framework/source/inc/accelerators/acceleratorconfiguration.hxx4
3 files changed, 0 insertions, 14 deletions
diff --git a/framework/inc/classes/filtercachedata.hxx b/framework/inc/classes/filtercachedata.hxx
index ad82d07ee681..9f2ec18d93ae 100644
--- a/framework/inc/classes/filtercachedata.hxx
+++ b/framework/inc/classes/filtercachedata.hxx
@@ -418,9 +418,7 @@ typedef OUStringList OrderList;
typedef CheckedIterator< OUStringList > CheckedStringListIterator;
typedef CheckedIterator< FileTypeHash > CheckedTypeIterator;
-typedef CheckedIterator< PerformanceHash > CheckedPerformanceIterator;
-typedef ::std::vector< FilterHash::const_iterator > FilterQuery;
// Use private static data container to hold all values of configuration!
diff --git a/framework/inc/stdtypes.h b/framework/inc/stdtypes.h
index faf2c730d11e..f0df075b9a46 100644
--- a/framework/inc/stdtypes.h
+++ b/framework/inc/stdtypes.h
@@ -101,13 +101,6 @@ void free(std::vector<T>& vec)
}
/**
- Basic string queue based on a std::queue()
- It implements some additional funtionality which can be useful but
- is missing at the normal std implementation.
-*/
-typedef ::std::queue< OUString > OUStringQueue;
-
-/**
Basic hash based on a std::unordered_map() which provides key=[OUString] and value=[template type] pairs
It implements some additional funtionality which can be useful but
is missing at the normal hash implementation.
@@ -138,7 +131,6 @@ typedef BaseHash< OUString > OUStringHashMap;
Our helper class OPropertySetHelper works optimized with handles but sometimes we have only a property name.
Mapping between these two parts of a property should be done in the fastest way :-)
*/
-typedef BaseHash< sal_Int32 > NameToHandleHash;
typedef cppu::OMultiTypeInterfaceContainerHelperVar<OUString> ListenerHash;
diff --git a/framework/source/inc/accelerators/acceleratorconfiguration.hxx b/framework/source/inc/accelerators/acceleratorconfiguration.hxx
index 15fe9a5bc236..d5eaace6f11b 100644
--- a/framework/source/inc/accelerators/acceleratorconfiguration.hxx
+++ b/framework/source/inc/accelerators/acceleratorconfiguration.hxx
@@ -59,10 +59,6 @@ const char CFG_ENTRY_PRIMARY[] = "PrimaryKeys";
const char CFG_ENTRY_GLOBAL[] = "Global";
const char CFG_ENTRY_MODULES[] = "Modules";
-/** "global" type to make accelerator presets unique, so they can be used
- in combination with the salhelper::SingletonRef mechanism! */
-typedef PresetHandler AcceleratorPresets;
-
/**
implements a read/write access to the accelerator configuration.
*/