From c5e7e3bad75b29e7678c3a6234dbfe0a60517dce Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 20 Feb 2017 12:31:49 +0100 Subject: loplugin:subtlezeroinit: starmath Change-Id: Ifc6f4788bb285e28451df9c98a72b454b7685160 --- starmath/source/cursor.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'starmath/source/cursor.cxx') diff --git a/starmath/source/cursor.cxx b/starmath/source/cursor.cxx index 1cd50ff54114..4560d40e221c 100644 --- a/starmath/source/cursor.cxx +++ b/starmath/source/cursor.cxx @@ -508,7 +508,7 @@ void SmCursor::InsertSubSup(SmSubSup eSubSup) { SmNodeList* pLineList = NodeToList(pLine); //Take the selection, and/or find iterator for current position - SmNodeList* pSelectedNodesList = new SmNodeList(); + SmNodeList* pSelectedNodesList = new SmNodeList; SmNodeList::iterator it; if(HasSelection()) it = TakeSelectedNodesFromList(pLineList, pSelectedNodesList); @@ -672,7 +672,7 @@ void SmCursor::InsertBrackets(SmBracketType eBracketType) { SmNodeList *pLineList = NodeToList(pLine); //Take the selection, and/or find iterator for current position - SmNodeList *pSelectedNodesList = new SmNodeList(); + SmNodeList *pSelectedNodesList = new SmNodeList; SmNodeList::iterator it; if(HasSelection()) it = TakeSelectedNodesFromList(pLineList, pSelectedNodesList); @@ -802,7 +802,7 @@ bool SmCursor::InsertRow() { //If we're in the context of a table if(pTable) { - SmNodeList *pNewLineList = new SmNodeList(); + SmNodeList *pNewLineList = new SmNodeList; //Move elements from pLineList to pNewLineList pNewLineList->splice(pNewLineList->begin(), *pLineList, it, pLineList->end()); //Make sure it is valid again @@ -887,7 +887,7 @@ void SmCursor::InsertFraction() { SmNodeList* pLineList = NodeToList(pLine); //Take the selection, and/or find iterator for current position - SmNodeList* pSelectedNodesList = new SmNodeList(); + SmNodeList* pSelectedNodesList = new SmNodeList; SmNodeList::iterator it; if(HasSelection()) it = TakeSelectedNodesFromList(pLineList, pSelectedNodesList); @@ -936,7 +936,7 @@ void SmCursor::InsertText(const OUString& aString) pText->AdjustFontDesc(); pText->Prepare(mpDocShell->GetFormat(), *mpDocShell); - SmNodeList* pList = new SmNodeList(); + SmNodeList* pList = new SmNodeList; pList->push_front(pText); InsertNodes(pList); @@ -1038,7 +1038,7 @@ void SmCursor::InsertElement(SmFormulaElement element){ pNewNode->Prepare(mpDocShell->GetFormat(), *mpDocShell); //Insert new node - SmNodeList* pList = new SmNodeList(); + SmNodeList* pList = new SmNodeList; pList->push_front(pNewNode); InsertNodes(pList); @@ -1065,7 +1065,7 @@ void SmCursor::InsertSpecial(const OUString& _aString) pSpecial->Prepare(mpDocShell->GetFormat(), *mpDocShell); //Insert the node - SmNodeList* pList = new SmNodeList(); + SmNodeList* pList = new SmNodeList; pList->push_front(pSpecial); InsertNodes(pList); @@ -1163,7 +1163,7 @@ void SmCursor::Paste() { SmNodeList* SmCursor::CloneList(SmClipboard &rClipboard){ SmCloningVisitor aCloneFactory; - SmNodeList* pClones = new SmNodeList(); + SmNodeList* pClones = new SmNodeList; for(auto &xNode : rClipboard){ SmNode *pClone = aCloneFactory.Clone(xNode.get()); -- cgit