summaryrefslogtreecommitdiff
path: root/toolkit/inc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2012-03-11 13:14:36 +0200
committerMichael Stahl <mstahl@redhat.com>2012-03-13 23:19:54 +0100
commita4a7b956dc0ad439b52ef188ba0f4e5bcc215f91 (patch)
tree4dcc15c4a07efb327d3d0412a04c83ae18d3c008 /toolkit/inc
parentaa998adbe3f7132998ba5aff438b540ff18a10bb (diff)
Convert tools/table.hxx usage to std::set in toolkit module in UnoPropertyArrayHelper class
Diffstat (limited to 'toolkit/inc')
-rw-r--r--toolkit/inc/toolkit/helper/unopropertyarrayhelper.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/toolkit/inc/toolkit/helper/unopropertyarrayhelper.hxx b/toolkit/inc/toolkit/helper/unopropertyarrayhelper.hxx
index c109528beed9..8fc5aefca230 100644
--- a/toolkit/inc/toolkit/helper/unopropertyarrayhelper.hxx
+++ b/toolkit/inc/toolkit/helper/unopropertyarrayhelper.hxx
@@ -32,9 +32,8 @@
#include <toolkit/dllapi.h>
#include <cppuhelper/propshlp.hxx>
-#include <tools/table.hxx>
-
#include <list>
+#include <set>
#include "toolkit/dllapi.h"
// ----------------------------------------------------
@@ -43,7 +42,7 @@
class TOOLKIT_DLLPUBLIC UnoPropertyArrayHelper : public ::cppu::IPropertyArrayHelper
{
private:
- Table maIDs;
+ std::set<sal_Int32> maIDs;
protected:
sal_Bool ImplHasProperty( sal_uInt16 nPropId ) const;