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