summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/helpinterceptor.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-28 13:48:16 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:30:16 +0200
commit0357ff2ef7f598568f5f516a0c00f121c6025e29 (patch)
tree5c0b87021ab6c4f11ac6cc16a670ee20d02d7721 /sfx2/source/appl/helpinterceptor.hxx
parent5d5b0c2079707f86311d3018a74a6fbd7cdbf787 (diff)
convert sfx2/source/appl/helpinterceptor.hxx from String to OUString
Change-Id: I3999e64cdc7c538fa300ec5ad648ec257f6faa3b
Diffstat (limited to 'sfx2/source/appl/helpinterceptor.hxx')
-rw-r--r--sfx2/source/appl/helpinterceptor.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sfx2/source/appl/helpinterceptor.hxx b/sfx2/source/appl/helpinterceptor.hxx
index 8d8a0ff46fa7..3600f5efd5ae 100644
--- a/sfx2/source/appl/helpinterceptor.hxx
+++ b/sfx2/source/appl/helpinterceptor.hxx
@@ -33,10 +33,10 @@
struct HelpHistoryEntry_Impl
{
- String aURL;
+ OUString aURL;
com::sun::star::uno::Any aViewData;
- HelpHistoryEntry_Impl( const String& rURL, const com::sun::star::uno::Any& rViewData ) :
+ HelpHistoryEntry_Impl( const OUString& rURL, const com::sun::star::uno::Any& rViewData ) :
aURL( rURL ), aViewData(rViewData) {}
};
@@ -65,18 +65,18 @@ friend class SfxHelpWindow_Impl;
HelpHistoryList_Impl* m_pHistory;
SfxHelpWindow_Impl* m_pWindow;
- sal_uIntPtr m_nCurPos;
- String m_aCurrentURL;
+ sal_uIntPtr m_nCurPos;
+ OUString m_aCurrentURL;
com::sun::star::uno::Any m_aViewData;
- void addURL( const String& rURL );
+ void addURL( const OUString& rURL );
public:
HelpInterceptor_Impl();
~HelpInterceptor_Impl();
void setInterception( ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > xFrame );
- String GetCurrentURL() const { return m_aCurrentURL; }
+ OUString GetCurrentURL() const { return m_aCurrentURL; }
@@ -121,7 +121,7 @@ class HelpListener_Impl : public ::cppu::WeakImplHelper1< ::com::sun::star::fram
private:
HelpInterceptor_Impl* pInterceptor;
Link aChangeLink;
- String aFactory;
+ OUString aFactory;
public:
HelpListener_Impl( HelpInterceptor_Impl* pInter );
@@ -132,7 +132,7 @@ public:
throw( ::com::sun::star::uno::RuntimeException );
void SetChangeHdl( const Link& rLink ) { aChangeLink = rLink; }
- String GetFactory() const { return aFactory; }
+ OUString GetFactory() const { return aFactory; }
};
// HelpStatusListener_Impl -----------------------------------------------------