diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-19 17:08:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-22 10:49:26 +0200 |
commit | 04f72acef2fea5a3d0a9c5c76730bb05977c6033 (patch) | |
tree | e96ee93383d1161b6d6f6e3267a73ea2e09010e5 /include/svtools | |
parent | 99960ec555f7a62160d69106fadb28b67b4694a3 (diff) |
convert include/svtools/addresstemplate.hxx from String to OUString
and make the local field protected->private, because nothing
else needs to access them.
Change-Id: I4411b98cacb06f3e80a7ab2108917b497dc63625
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/addresstemplate.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/addresstemplate.hxx b/include/svtools/addresstemplate.hxx index d7406235b9a6..61497a18ec07 100644 --- a/include/svtools/addresstemplate.hxx +++ b/include/svtools/addresstemplate.hxx @@ -45,7 +45,7 @@ namespace svt struct AddressBookSourceDialogData; class SVT_DLLPUBLIC AddressBookSourceDialog : public ModalDialog { - protected: + private: // Controls ComboBox* m_pDatasource; PushButton* m_pAdministrateDatasources; @@ -53,7 +53,7 @@ namespace svt ScrollBar* m_pFieldScroller; // string to display for "no selection" - const String m_sNoFieldSelection; + const OUString m_sNoFieldSelection; /// the DatabaseContext for selecting data sources ::com::sun::star::uno::Reference< ::com::sun::star::sdb::XDatabaseContext > @@ -112,7 +112,7 @@ namespace svt // implementations void implScrollFields(sal_Int32 _nPos, sal_Bool _bAdjustFocus, sal_Bool _bAdjustScrollbar); - void implSelectField(ListBox* _pBox, const String& _rText); + void implSelectField(ListBox* _pBox, const OUString& _rText); void initalizeListBox(ListBox* _pList); void resetTables(); |