summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbahyperlink.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/vba/vbahyperlink.hxx')
-rw-r--r--sc/source/ui/vba/vbahyperlink.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sc/source/ui/vba/vbahyperlink.hxx b/sc/source/ui/vba/vbahyperlink.hxx
index 85e29678d234..f69e3147f5b1 100644
--- a/sc/source/ui/vba/vbahyperlink.hxx
+++ b/sc/source/ui/vba/vbahyperlink.hxx
@@ -45,16 +45,16 @@ public:
virtual ~ScVbaHyperlink();
// Attributes
- virtual ::rtl::OUString SAL_CALL getName() throw (css::uno::RuntimeException);
- virtual void SAL_CALL setName( const ::rtl::OUString& rName ) throw (css::uno::RuntimeException);
- virtual ::rtl::OUString SAL_CALL getAddress() throw (css::uno::RuntimeException);
- virtual void SAL_CALL setAddress( const ::rtl::OUString& rAddress ) throw (css::uno::RuntimeException);
- virtual ::rtl::OUString SAL_CALL getSubAddress() throw (css::uno::RuntimeException);
- virtual void SAL_CALL setSubAddress( const ::rtl::OUString& rSubAddress ) throw (css::uno::RuntimeException);
- virtual ::rtl::OUString SAL_CALL getScreenTip() throw (css::uno::RuntimeException);
- virtual void SAL_CALL setScreenTip( const ::rtl::OUString& rScreenTip ) throw (css::uno::RuntimeException);
- virtual ::rtl::OUString SAL_CALL getTextToDisplay() throw (css::uno::RuntimeException);
- virtual void SAL_CALL setTextToDisplay( const ::rtl::OUString& rTextToDisplay ) throw (css::uno::RuntimeException);
+ virtual OUString SAL_CALL getName() throw (css::uno::RuntimeException);
+ virtual void SAL_CALL setName( const OUString& rName ) throw (css::uno::RuntimeException);
+ virtual OUString SAL_CALL getAddress() throw (css::uno::RuntimeException);
+ virtual void SAL_CALL setAddress( const OUString& rAddress ) throw (css::uno::RuntimeException);
+ virtual OUString SAL_CALL getSubAddress() throw (css::uno::RuntimeException);
+ virtual void SAL_CALL setSubAddress( const OUString& rSubAddress ) throw (css::uno::RuntimeException);
+ virtual OUString SAL_CALL getScreenTip() throw (css::uno::RuntimeException);
+ virtual void SAL_CALL setScreenTip( const OUString& rScreenTip ) throw (css::uno::RuntimeException);
+ virtual OUString SAL_CALL getTextToDisplay() throw (css::uno::RuntimeException);
+ virtual void SAL_CALL setTextToDisplay( const OUString& rTextToDisplay ) throw (css::uno::RuntimeException);
virtual sal_Int32 SAL_CALL getType() throw (css::uno::RuntimeException);
virtual css::uno::Reference< ov::excel::XRange > SAL_CALL getRange() throw (css::uno::RuntimeException);
virtual css::uno::Reference< ov::msforms::XShape > SAL_CALL getShape() throw (css::uno::RuntimeException);
@@ -63,7 +63,7 @@ public:
VBAHELPER_DECL_XHELPERINTERFACE
private:
- typedef ::std::pair< ::rtl::OUString, ::rtl::OUString > UrlComponents;
+ typedef ::std::pair< OUString, OUString > UrlComponents;
void ensureTextField() throw (css::uno::RuntimeException);
UrlComponents getUrlComponents() throw (css::uno::RuntimeException);
@@ -72,7 +72,7 @@ private:
private:
css::uno::Reference< css::table::XCell > mxCell;
css::uno::Reference< css::beans::XPropertySet > mxTextField;
- ::rtl::OUString maScreenTip;
+ OUString maScreenTip;
long mnType;
};