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