summaryrefslogtreecommitdiff
path: root/forms/source/component/Columns.hxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /forms/source/component/Columns.hxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'forms/source/component/Columns.hxx')
-rw-r--r--forms/source/component/Columns.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/forms/source/component/Columns.hxx b/forms/source/component/Columns.hxx
index c5463a999b4a..ed2a1054d82f 100644
--- a/forms/source/component/Columns.hxx
+++ b/forms/source/component/Columns.hxx
@@ -61,14 +61,14 @@ protected:
// [properties]
::comphelper::ComponentContext m_aContext;
- ::rtl::OUString m_aModelName;
+ OUString m_aModelName;
// [properties]
- ::rtl::OUString m_aLabel; // Column name
+ OUString m_aLabel; // Column name
// [properties]
public:
- OGridColumn(const ::comphelper::ComponentContext& _rContext, const ::rtl::OUString& _sModelName = ::rtl::OUString());
+ OGridColumn(const ::comphelper::ComponentContext& _rContext, const OUString& _sModelName = OUString());
OGridColumn(const OGridColumn* _pOriginal );
virtual ~OGridColumn();
@@ -110,7 +110,7 @@ public:
// XCloneable
virtual ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable > SAL_CALL createClone( ) throw (::com::sun::star::uno::RuntimeException);
- const ::rtl::OUString& getModelName() const { return m_aModelName; }
+ const OUString& getModelName() const { return m_aModelName; }
protected:
static void clearAggregateProperties(::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property>& seqProps, sal_Bool bAllowDropDown);
@@ -189,7 +189,7 @@ OGridColumn* ClassName::createCloneColumn() const \
// List of all known columns
const StringSequence& getColumnTypes();
-sal_Int32 getColumnTypeByModelName(const ::rtl::OUString& aModelName);
+sal_Int32 getColumnTypeByModelName(const OUString& aModelName);
// Columns
DECL_COLUMN(TextFieldColumn)