diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-05 18:34:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-05 18:36:22 +0100 |
commit | 895e6e7bb7abddb135f6fe3cfef1505261d4cbc6 (patch) | |
tree | 07e906292f1e9ecc47b49603a920ddc28c41d91c /sd | |
parent | 0c55303581156d01992d9d958ac5f7aafc4a3ebb (diff) |
Get rid of comphelper::UStringLess
...default std::less<OUString> is just fine.
Change-Id: Ib9d3c10f2817d757f3c19eb3d4607095883af91a
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/framework/module/ResourceManager.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sd/source/ui/framework/module/ResourceManager.cxx b/sd/source/ui/framework/module/ResourceManager.cxx index 352ea00ff208..dbab4f42b618 100644 --- a/sd/source/ui/framework/module/ResourceManager.cxx +++ b/sd/source/ui/framework/module/ResourceManager.cxx @@ -24,7 +24,6 @@ #include "framework/ConfigurationController.hxx" #include <com/sun/star/drawing/framework/XControllerManager.hpp> -#include <comphelper/stl_types.hxx> #include <set> using namespace ::com::sun::star; @@ -44,7 +43,7 @@ namespace { namespace sd { namespace framework { class ResourceManager::MainViewContainer - : public ::std::set<OUString, ::comphelper::UStringLess> + : public ::std::set<OUString> { public: MainViewContainer (void) {} |