summaryrefslogtreecommitdiff
path: root/cui/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-07-11 13:52:33 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-07-11 14:31:44 +0100
commitcf6a74af5340c2c4fbf270a95bad12479524d9d4 (patch)
tree5d9bdbbdf54f15d0649c66009d86c08aeef27bb7 /cui/source
parent8197518497ce5c538ea5db85168614f6025de2b5 (diff)
XubString->OUString
Change-Id: I1049249741f445ad7bd9c070f99812c4404597c9
Diffstat (limited to 'cui/source')
-rw-r--r--cui/source/options/connpooloptions.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/options/connpooloptions.cxx b/cui/source/options/connpooloptions.cxx
index 0745f8f9ef96..bf64607c80f0 100644
--- a/cui/source/options/connpooloptions.cxx
+++ b/cui/source/options/connpooloptions.cxx
@@ -54,7 +54,7 @@ namespace offapp
virtual void Init();
void Update(const DriverPoolingSettings& _rSettings);
- virtual String GetCellText( long nRow, sal_uInt16 nColId ) const;
+ virtual OUString GetCellText( long nRow, sal_uInt16 nColId ) const;
// the handler will be called with a DriverPoolingSettings::const_iterator as parameter,
// or NULL if no valid current row exists
@@ -242,9 +242,9 @@ namespace offapp
}
//--------------------------------------------------------------------
- String DriverListControl::GetCellText( long nRow, sal_uInt16 nColId ) const
+ OUString DriverListControl::GetCellText( long nRow, sal_uInt16 nColId ) const
{
- String sReturn;
+ OUString sReturn;
if (nRow > m_aSettings.size())
{
OSL_FAIL("DriverListControl::GetCellText: don't ask me for such rows!");