summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography/general.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-19 15:20:39 +0200
committerNoel Grandin <noel@peralex.com>2013-10-01 10:08:36 +0200
commita952bd8aacba91ed654f11da07cbf0059d378918 (patch)
treec0fdd92d645df903db778c0b2606ac41be8a2e80 /extensions/source/bibliography/general.hxx
parentde6a35f52276b601a8ebc68fbcfd28ad2db84f6f (diff)
convert extensions module from String to OUString
Change-Id: Ia0cb9fe1eaebdd295fb1742074fe2c48be61c077
Diffstat (limited to 'extensions/source/bibliography/general.hxx')
-rw-r--r--extensions/source/bibliography/general.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/extensions/source/bibliography/general.hxx b/extensions/source/bibliography/general.hxx
index f9b97db7f5ef..a0c3ee1f3c33 100644
--- a/extensions/source/bibliography/general.hxx
+++ b/extensions/source/bibliography/general.hxx
@@ -102,11 +102,11 @@ class BibGeneralPage: public BibGeneralPageBaseClass, public BibTabPage
Size aStdSize;
Point aBasePos;
- String aBibTypeArr[ TYPE_COUNT ];
- String sErrorPrefix;
- String sTableErrorString;
+ OUString aBibTypeArr[ TYPE_COUNT ];
+ OUString sErrorPrefix;
+ OUString sTableErrorString;
- String sTypeColumnName;
+ OUString sTypeColumnName;
::com::sun::star::uno::Reference< ::com::sun::star::awt::XControlContainer >
xCtrlContnr;
@@ -124,11 +124,11 @@ class BibGeneralPage: public BibGeneralPageBaseClass, public BibTabPage
BibDataManager* pDatMan;
::com::sun::star::uno::Reference< ::com::sun::star::awt::XControlModel >
- AddXControl( const String& rName, Point aPos, Size aSize, const OString& sHelpId,
+ AddXControl( const OUString& rName, Point aPos, Size aSize, const OString& sHelpId,
sal_Int16& rIndex );
void AddControlWithError( const OUString& rColumnName, const Point& rPos,
- const Size& rSize, String& rErrorString, String aColumnUIName,
+ const Size& rSize, OUString& rErrorString, OUString aColumnUIName,
const OString& sHelpId, sal_uInt16 nIndexInFTArray );
void AdjustScrollbars();
@@ -143,7 +143,7 @@ public:
BibGeneralPage(Window* pParent, BibDataManager* pDatMan);
virtual ~BibGeneralPage();
- inline const String& GetErrorString() const;
+ inline const OUString& GetErrorString() const;
inline const ::com::sun::star::uno::Reference< ::com::sun::star::form::XBoundComponent >&
GetTypeListBoxModel() const;
@@ -167,7 +167,7 @@ public:
};
-inline const String& BibGeneralPage::GetErrorString() const
+inline const OUString& BibGeneralPage::GetErrorString() const
{
return sTableErrorString;
}