]> git.lyx.org Git - lyx.git/blob - src/graphics/ChangeLog
16696974eaa521063f9645e88a06539cc79dc09e
[lyx.git] / src / graphics / ChangeLog
1 2001-02-28  Baruch Even  <baruch@ev-en.org>
2
3         * GraphicsCache.h:
4         * GraphicsCache.C: Changed the singleton pattern implementation, the
5         former version "leaked" in the sense that it was not deallocated at
6         program end.
7
8 2001-02-20  Baruch Even  <baruch@ev-en.org>
9
10         * GraphicsCache.C: Changed to use shared_ptr<GraphicsCacheItem>
11         instead of a pure pointer.
12
13         * GraphicsCacheItem.[Ch]:
14         * GraphicsCacheItem_pimpl.[Ch]: Collapsed them into GraphicsCacheItem,
15         removed the reference counting that was inside. Also fixed a bug where
16         a temporary file wouldn't get erased.
17
18         * ImageLoader.[Ch]: Changed the semantics of the image_ pointers usage.
19         Ownership is now dropped when the caller requests the image_ pointer.
20
21 2001-02-20  Baruch Even  <baruch@ev-en.org>
22
23         * GraphicsCache.C: Cleared up the confusion on when and how it is
24         emptied.
25
26         * GraphicsCacheItem.C: Indentation change.
27
28         * GraphicsCacheItem_pimpl.C: Fixed the loading logic so that it will
29         figure correctly when the image has been loaded successfully.
30
31 2001-02-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
32
33         * ImageLoader.C: add a "using" directive.
34
35         * ImageLoader.h: remove extra comma at the end of enum; add an
36         std:: qualifier for vector.
37
38 2001-01-21  Baruch Even  <baruch@ev-en.org>
39
40         * GraphicsCacheItem.[Ch]: Changes due to the storage of width and
41         height in the image itself and minor cleanups.
42
43         * GraphicsCacheItem_impl.[Ch]: Changes due to the switch to use a
44         new ImageLoader class instead of the older Renderer class. This
45         means change of responsibilities.