From 9865440d217d975206a3f91612f0666312bc8fd8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 28 Feb 2019 13:09:02 +0200 Subject: new loplugin typedefparam verify that parameters use the exact same typedef-names (if any) in definition and declaration Change-Id: I55d2817f599b0253904dce2d35a1a93967e15a77 Reviewed-on: https://gerrit.libreoffice.org/68439 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sc/source/filter/inc/xeescher.hxx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'sc/source/filter/inc/xeescher.hxx') diff --git a/sc/source/filter/inc/xeescher.hxx b/sc/source/filter/inc/xeescher.hxx index 6d30de9b553e..f45ebbf79bcf 100644 --- a/sc/source/filter/inc/xeescher.hxx +++ b/sc/source/filter/inc/xeescher.hxx @@ -365,16 +365,13 @@ private: class XclExpComments : public XclExpRecord { public: - typedef XclExpRecordList< XclExpNote > - XclExpNoteList; - - XclExpComments( SCTAB nTab, XclExpNoteList& rNotes ); + XclExpComments( SCTAB nTab, XclExpRecordList< XclExpNote >& rNotes ); virtual void SaveXml( XclExpXmlStream& rStrm ) override; private: SCTAB const mnTab; - XclExpNoteList& mrNotes; + XclExpRecordList< XclExpNote >& mrNotes; }; // object manager ============================================================= -- cgit