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