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