diff --git a/basctl/source/basicide/baside2.hxx b/basctl/source/basicide/baside2.hxx index a49df3cbee1c..b35af388a7dc 100644 --- a/basctl/source/basicide/baside2.hxx +++ b/basctl/source/basicide/baside2.hxx @@ -87,8 +87,7 @@ private: SyntaxHighlighter aHighlighter; Idle aSyntaxIdle; - typedef std::set SyntaxLineSet; - SyntaxLineSet aSyntaxLineTable; + std::set aSyntaxLineTable; DECL_LINK_TYPED(SyntaxTimerHdl, Idle *, void); // progress bar diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 68f2767e359e..f612545d159c 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -1284,7 +1284,7 @@ IMPL_LINK_NOARG_TYPED(EditorWindow, SyntaxTimerHdl, Idle *, void) //pEditEngine->SetUpdateMode(false); bHighlightning = true; - for ( SyntaxLineSet::const_iterator it = aSyntaxLineTable.begin(); + for ( std::set::const_iterator it = aSyntaxLineTable.begin(); it != aSyntaxLineTable.end(); ++it ) { sal_uInt16 nLine = *it; diff --git a/sw/source/uibase/inc/srcedtw.hxx b/sw/source/uibase/inc/srcedtw.hxx index 09a436689275..d7b57db57cf1 100644 --- a/sw/source/uibase/inc/srcedtw.hxx +++ b/sw/source/uibase/inc/srcedtw.hxx @@ -59,8 +59,6 @@ public: }; -typedef std::set SyntaxLineSet; - class SwSrcEditWindow : public vcl::Window, public SfxListener { private: @@ -88,7 +86,7 @@ private: bool bHighlighting; Idle aSyntaxIdle; - SyntaxLineSet aSyntaxLineTable; + std::set aSyntaxLineTable; void ImpDoHighlight( const OUString& rSource, sal_uInt16 nLineOff );