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