diff options
author | Frank Schönheit <fs@openoffice.org> | 2010-03-11 12:20:02 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2010-03-11 12:20:02 +0000 |
commit | 43533b80c9400efef304654a98d3b71b8430421a (patch) | |
tree | e10ea5281905ca6e7fa4240631782b5b2f60fa5f /forms/source/inc/componenttools.hxx | |
parent | 88df38f41b5f6317d1b9faeafe846bb4c6f8753b (diff) |
dba321a: #i109535# grid columns now returning proper types in getTypes
Diffstat (limited to 'forms/source/inc/componenttools.hxx')
-rw-r--r-- | forms/source/inc/componenttools.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/forms/source/inc/componenttools.hxx b/forms/source/inc/componenttools.hxx index 73771f19783a..e91573c43d2f 100644 --- a/forms/source/inc/componenttools.hxx +++ b/forms/source/inc/componenttools.hxx @@ -48,7 +48,7 @@ namespace frm typedef ::com::sun::star::uno::Type Type; public: - bool operator()( const Type& _rLHS, const Type& _rRHS ) + bool operator()( const Type& _rLHS, const Type& _rRHS ) const { return _rLHS.getTypeName() < _rRHS.getTypeName(); } @@ -85,7 +85,9 @@ namespace frm const TypeSequence& _rTypes3 ); - void addTypes( const TypeSequence& _rTypes ); + void addType( const Type& i_rType ); + void addTypes( const TypeSequence& _rTypes ); + void removeType( const Type& i_rType ); /** returns the types represented by this bag */ |