summaryrefslogtreecommitdiff
path: root/svtools/source/config/htmlcfg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/config/htmlcfg.cxx')
-rw-r--r--svtools/source/config/htmlcfg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/config/htmlcfg.cxx b/svtools/source/config/htmlcfg.cxx
index 1ba6ba2c775f..1dadb4a7b8aa 100644
--- a/svtools/source/config/htmlcfg.cxx
+++ b/svtools/source/config/htmlcfg.cxx
@@ -45,7 +45,7 @@ using namespace com::sun::star::uno;
struct HtmlOptions_Impl
{
- ::std::list<Link> aList;
+ ::std::list<Link<>> aList;
sal_Int32 nFlags;
sal_Int32 nExportMode;
sal_Int32 aFontSizeArr[HTML_FONT_COUNT];
@@ -244,7 +244,7 @@ void SvxHtmlOptions::ImplCommit()
void SvxHtmlOptions::CallListeners()
{
- for ( ::std::list<Link>::const_iterator iter = pImp->aList.begin(); iter != pImp->aList.end(); ++iter )
+ for ( ::std::list<Link<>>::const_iterator iter = pImp->aList.begin(); iter != pImp->aList.end(); ++iter )
iter->Call( this );
}