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