summaryrefslogtreecommitdiff
path: root/include/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-20 09:26:45 +0200
committerNoel Grandin <noel@peralex.com>2013-08-22 10:49:27 +0200
commitba39b8e722b9e96eab8965c605203fe8e8198c93 (patch)
treee4de056b2a41b0cec5d843c7ebc153ac57197eb6 /include/svtools
parenta7f84fc431a52ee51feea4af40af279659ad9c25 (diff)
convert include/svtools/treelistbox.hxx from String to OUString
Change-Id: Ie0416511fd91a523778a312685d3b438118a0c52
Diffstat (limited to 'include/svtools')
-rw-r--r--include/svtools/treelistbox.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svtools/treelistbox.hxx b/include/svtools/treelistbox.hxx
index 4c767df789fa..699300f25497 100644
--- a/include/svtools/treelistbox.hxx
+++ b/include/svtools/treelistbox.hxx
@@ -294,9 +294,9 @@ protected:
// In-place editing
SvInplaceEdit2* pEdCtrl;
- void EditText( const String&, const Rectangle&,const Selection&);
- void EditText( const String&, const Rectangle&,const Selection&, sal_Bool bMulti);
- void EditTextMultiLine( const String&, const Rectangle&,const Selection&);
+ void EditText( const OUString&, const Rectangle&,const Selection&);
+ void EditText( const OUString&, const Rectangle&,const Selection&, sal_Bool bMulti);
+ void EditTextMultiLine( const OUString&, const Rectangle&,const Selection&);
void CancelTextEditing();
sal_Bool EditingCanceled() const;
bool IsEmptyTextAllowed() const;
@@ -790,14 +790,14 @@ class SvInplaceEdit2
public:
SvInplaceEdit2( Window* pParent, const Point& rPos, const Size& rSize,
- const String& rData, const Link& rNotifyEditEnd,
+ const OUString& rData, const Link& rNotifyEditEnd,
const Selection&, sal_Bool bMultiLine = sal_False );
~SvInplaceEdit2();
sal_Bool KeyInput( const KeyEvent& rKEvt );
void LoseFocus();
sal_Bool EditingCanceled() const { return bCanceled; }
OUString GetText() const;
- String GetSavedValue() const;
+ OUString GetSavedValue() const;
void StopEditing( sal_Bool bCancel = sal_False );
void Hide();
};