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