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