Re: [Libreoffice] [PATCH] Convert tools/list.hxx usage to std::list

2011-02-01 Thread Jonathan Callen
On 02/01/2011 01:57 PM, Jonathan Callen wrote: > The attached patch replaces usage of LinkList (declared as > DECLARE_LIST(LinkList, Link*) with std::list. > > I used list instead of list because 1) the elements of the > list were only ever used from within the .cxx file dec

[Libreoffice] [PATCH] Convert tools/list.hxx usage to std::list

2011-02-01 Thread Jonathan Callen
and deallocated on removal, so I just made that more explicit by letting std::list handle it. As with all my patches, this is LGPLv3+/MPL. From ee05143cb845bf7f82cf1a55b5e72f7a932946c0 Mon Sep 17 00:00:00 2001 From: Jonathan Callen Date: Tue, 1 Feb 2011 01:32:54 -0500 Subject: [PATCH] Convert tools

[Libreoffice] [PATCH] Remove unused SalFontStructList

2011-01-28 Thread Jonathan Callen
The attached patch removes the declaration of SalFontStructList because it is completely unused. (Verified via ./g grep) This patch, like all other patches for LibreOffice from me (unless otherwise noted) is licensed under both the LGPLv3+ and the MPL. -- Jonathan Callen From