summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-04 10:36:21 +0200
committerNoel Grandin <noel@peralex.com>2013-09-05 08:54:53 +0200
commiteb2bc3ca03d0e0eeac4059ca55e640043f8332f4 (patch)
treea1ba70e59658950f276d5dfc7e9cff81bb634e61 /svx/source
parentb7b50269c3c4cbcd9228bb614577a7699e0ad664 (diff)
convert svx/.../chinese_dictionarydialog.hxx from String to OUString
Change-Id: I66fd209297e8550495a0f99de573eae6e54768c3
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx6
-rw-r--r--svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx6
2 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx
index 5ea698be0261..ebe6f5569194 100644
--- a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx
+++ b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx
@@ -80,7 +80,7 @@ DictionaryList::DictionaryList( Window* pParent )
{
}
-String DictionaryList::getPropertyTypeName( sal_Int16 nConversionPropertyType ) const
+OUString DictionaryList::getPropertyTypeName( sal_Int16 nConversionPropertyType ) const
{
if(!m_pPropertyTypeNameListBox || !m_pPropertyTypeNameListBox->GetEntryCount())
return String();
@@ -91,7 +91,7 @@ String DictionaryList::getPropertyTypeName( sal_Int16 nConversionPropertyType )
return m_pPropertyTypeNameListBox->GetEntry(0);
}
-String DictionaryList::makeTabString( const DictionaryEntry& rEntry ) const
+OUString DictionaryList::makeTabString( const DictionaryEntry& rEntry ) const
{
String aStr( rEntry.m_aTerm );
aStr += '\t';
@@ -315,7 +315,7 @@ void DictionaryList::activate( HeaderBar* pHeaderBar )
Show();
}
-HeaderBar* DictionaryList::createHeaderBar( const String& rColumn1, const String& rColumn2, const String& rColumn3
+HeaderBar* DictionaryList::createHeaderBar( const OUString& rColumn1, const OUString& rColumn2, const OUString& rColumn3
, long nWidth1, long nWidth2, long nWidth3 )
{
HeaderBar* pHeaderBar = new HeaderBar( Control::GetParent(), WB_BUTTONSTYLE | WB_BOTTOMBORDER );
diff --git a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx
index c0681fffdaea..ac645eb7faf1 100644
--- a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx
+++ b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx
@@ -69,7 +69,7 @@ public:
DictionaryList( Window* pParent );
virtual ~DictionaryList();
- HeaderBar* createHeaderBar( const String& rColumn1, const String& rColumn2, const String& rColumn3
+ HeaderBar* createHeaderBar( const OUString& rColumn1, const OUString& rColumn2, const OUString& rColumn3
, long nWidth1, long nWidth2, long nWidth3 );
void initDictionaryControl( const ::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::XConversionDictionary>& xDictionary
@@ -95,8 +95,8 @@ public:
virtual void Resize();
private:
- String getPropertyTypeName( sal_Int16 nConversionPropertyType /*linguistic2::ConversionPropertyType*/ ) const;
- String makeTabString( const DictionaryEntry& rEntry ) const;
+ OUString getPropertyTypeName( sal_Int16 nConversionPropertyType /*linguistic2::ConversionPropertyType*/ ) const;
+ OUString makeTabString( const DictionaryEntry& rEntry ) const;
DECL_LINK( CompareHdl, SvSortData* );
StringCompare ColumnCompare( SvTreeListEntry* pLeft, SvTreeListEntry* pRight );