summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-14 10:26:40 +0200
committerNoel Grandin <noel@peralex.com>2015-09-15 09:37:31 +0200
commitdccd68adba8affbac7080cfe7ac97451037b79a0 (patch)
tree155e97acd94137bcb80ae91b26521bd6565f62c8 /svtools
parentd3a2c0f60365d6092e5061b1d061d6e3e53eb9cf (diff)
remove unused Link<>
Change-Id: I7749d0d7d7dc27395373ed4a81e8235b9317d284
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/htmlcfg.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/svtools/source/config/htmlcfg.cxx b/svtools/source/config/htmlcfg.cxx
index 1dadb4a7b8aa..073ac0ebf488 100644
--- a/svtools/source/config/htmlcfg.cxx
+++ b/svtools/source/config/htmlcfg.cxx
@@ -45,7 +45,6 @@ using namespace com::sun::star::uno;
struct HtmlOptions_Impl
{
- ::std::list<Link<>> aList;
sal_Int32 nFlags;
sal_Int32 nExportMode;
sal_Int32 aFontSizeArr[HTML_FONT_COUNT];
@@ -242,17 +241,9 @@ void SvxHtmlOptions::ImplCommit()
PutProperties(aNames, aValues);
}
-void SvxHtmlOptions::CallListeners()
-{
- for ( ::std::list<Link<>>::const_iterator iter = pImp->aList.begin(); iter != pImp->aList.end(); ++iter )
- iter->Call( this );
-}
-
-
void SvxHtmlOptions::Notify( const com::sun::star::uno::Sequence< OUString >& )
{
Load( GetPropertyNames() );
- CallListeners();
}
@@ -311,7 +302,6 @@ void SvxHtmlOptions::SetExportMode(sal_uInt16 nSet)
{
pImp->nExportMode = nSet;
SetModified();
- CallListeners();
}
}