summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbahyperlinks.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/vba/vbahyperlinks.cxx')
-rw-r--r--sc/source/ui/vba/vbahyperlinks.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/sc/source/ui/vba/vbahyperlinks.cxx b/sc/source/ui/vba/vbahyperlinks.cxx
index 68185d8ed7f8..bad71e7c81ae 100644
--- a/sc/source/ui/vba/vbahyperlinks.cxx
+++ b/sc/source/ui/vba/vbahyperlinks.cxx
@@ -28,8 +28,6 @@
using namespace ::ooo::vba;
using namespace ::com::sun::star;
-
-
namespace {
/** Returns true, if every range of rxInner is contained in any range of rScOuter. */
@@ -45,8 +43,6 @@ bool lclContains( const ScRangeList& rScOuter, const uno::Reference< excel::XRan
return true;
}
-
-
/** Functor to decide whether the anchors of two Hyperlink objects are equal. */
struct EqualAnchorFunctor
{
@@ -102,8 +98,6 @@ bool EqualAnchorFunctor::operator()( const uno::Reference< excel::XHyperlink >&
} // namespace
-
-
namespace detail {
class ScVbaHlinkContainer : public ::cppu::WeakImplHelper1< container::XIndexAccess >
@@ -130,8 +124,6 @@ private:
HyperlinkVector maHlinks;
};
-
-
ScVbaHlinkContainer::ScVbaHlinkContainer() throw (uno::RuntimeException)
{
// TODO FIXME: fill with existing hyperlinks
@@ -185,8 +177,6 @@ sal_Bool SAL_CALL ScVbaHlinkContainer::hasElements() throw (uno::RuntimeExceptio
return !maHlinks.empty();
}
-
-
ScVbaHlinkContainerMember::ScVbaHlinkContainerMember( ScVbaHlinkContainer* pContainer ) :
mxContainer( pContainer )
{
@@ -198,8 +188,6 @@ ScVbaHlinkContainerMember::~ScVbaHlinkContainerMember()
} // namespace detail
-
-
ScVbaHyperlinks::ScVbaHyperlinks( const uno::Reference< XHelperInterface >& rxParent,
const uno::Reference< uno::XComponentContext >& rxContext ) throw (uno::RuntimeException) :
detail::ScVbaHlinkContainerMember( new detail::ScVbaHlinkContainer ),
@@ -281,6 +269,4 @@ uno::Any ScVbaHyperlinks::createCollectionObject( const uno::Any& rSource )
VBAHELPER_IMPL_XHELPERINTERFACE( ScVbaHyperlinks, "ooo.vba.excel.Hyperlinks" )
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */