diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-04-07 12:06:47 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-04-07 14:23:11 +0200 |
commit | 1946794ae09ba732022fe6a74ea45e304ab70b84 (patch) | |
tree | e32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /sw/inc/flddropdown.hxx | |
parent | 5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (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 'sw/inc/flddropdown.hxx')
-rw-r--r-- | sw/inc/flddropdown.hxx | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/sw/inc/flddropdown.hxx b/sw/inc/flddropdown.hxx index f3ad2dce471b..57d4ee25d5e2 100644 --- a/sw/inc/flddropdown.hxx +++ b/sw/inc/flddropdown.hxx @@ -60,27 +60,27 @@ class SW_DLLPUBLIC SwDropDownField : public SwField /** the possible values (aka items) of the dropdown box */ - std::vector<rtl::OUString> aValues; + std::vector<OUString> aValues; /** the selected item */ - rtl::OUString aSelectedItem; + OUString aSelectedItem; /** the name of the field */ - rtl::OUString aName; + OUString aName; /** help text */ - rtl::OUString aHelp; + OUString aHelp; /** tool tip string */ - rtl::OUString aToolTip; + OUString aToolTip; /** Expands the field. @@ -126,14 +126,14 @@ public: @return the selected value */ - virtual const rtl::OUString & GetPar1() const; + virtual const OUString & GetPar1() const; /** Returns the name of the field. @return the name of the field */ - virtual rtl::OUString GetPar2() const; + virtual OUString GetPar2() const; /** Sets the selected value. @@ -142,14 +142,14 @@ public: selected. Otherwise no item will be selected, i.e. the resulting selection will be empty. */ - virtual void SetPar1(const rtl::OUString & rStr); + virtual void SetPar1(const OUString & rStr); /** Sets the name of the field. @param rStr the new name of the field */ - virtual void SetPar2(const rtl::OUString & rStr); + virtual void SetPar2(const OUString & rStr); /** Sets the items of the dropdown box. @@ -158,7 +158,7 @@ public: @param rItems the new items */ - void SetItems(const std::vector<rtl::OUString> & rItems); + void SetItems(const std::vector<OUString> & rItems); /** Sets the items of the dropdown box. @@ -167,42 +167,42 @@ public: @param rItems the new items */ - void SetItems(const com::sun::star::uno::Sequence<rtl::OUString> & rItems); + void SetItems(const com::sun::star::uno::Sequence<OUString> & rItems); /** Returns the items of the dropdown box. @return the items of the dropdown box */ - com::sun::star::uno::Sequence<rtl::OUString> GetItemSequence() const; + com::sun::star::uno::Sequence<OUString> GetItemSequence() const; /** Returns the selected item. @return the selected item */ - const rtl::OUString & GetSelectedItem() const; + const OUString & GetSelectedItem() const; /** Returns the name of the field. @return the name of the field */ - const rtl::OUString & GetName() const; + const OUString & GetName() const; /** Returns the help text of the field. @return the help text of the field */ - const rtl::OUString & GetHelp() const; + const OUString & GetHelp() const; /** Returns the tool tip of the field. @return the tool tip of the field */ - const rtl::OUString & GetToolTip() const; + const OUString & GetToolTip() const; /** Sets the selected item. @@ -215,28 +215,28 @@ public: @retval sal_True the selected item was successfully set @retval sal_True failure (empty selection) */ - sal_Bool SetSelectedItem(const rtl::OUString & rItem); + sal_Bool SetSelectedItem(const OUString & rItem); /** Sets the name of the field. @param rName the new name of the field */ - void SetName(const rtl::OUString & rName); + void SetName(const OUString & rName); /** Sets the help text of the field. @param rHelp the help text */ - void SetHelp(const rtl::OUString & rHelp); + void SetHelp(const OUString & rHelp); /** Sets the tool tip of the field. @param rToolTip the tool tip */ - void SetToolTip(const rtl::OUString & rToolTip); + void SetToolTip(const OUString & rToolTip); /** API: Gets a property value from the dropdown field. |