|
Boost-Commit : |
From: lbourdev_at_[hidden]
Date: 2007-11-11 13:25:39
Author: lbourdev
Date: 2007-11-11 13:25:39 EST (Sun, 11 Nov 2007)
New Revision: 41009
URL: http://svn.boost.org/trac/boost/changeset/41009
Log:
GIL: Minor fix to tiff_io
Text files modified:
trunk/boost/gil/extension/io/tiff_io.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/gil/extension/io/tiff_io.hpp
==============================================================================
--- trunk/boost/gil/extension/io/tiff_io.hpp (original)
+++ trunk/boost/gil/extension/io/tiff_io.hpp 2007-11-11 13:25:39 EST (Sun, 11 Nov 2007)
@@ -410,14 +410,14 @@
/// \brief Loads and color-converts the image specified by the given tiff image file name into the given view.
template <typename View,typename CC>
inline void tiff_read_and_convert_view(const std::string& filename,const View& view,CC cc) {
- tiff_read_view(filename.c_str(),view,cc);
+ tiff_read_and_convert_view(filename.c_str(),view,cc);
}
/// \ingroup TIFF_IO
/// \brief Loads and color-converts the image specified by the given tiff image file name into the given view.
template <typename View>
inline void tiff_read_and_convert_view(const std::string& filename,const View& view) {
- tiff_read_view(filename.c_str(),view);
+ tiff_read_and_convert_view(filename.c_str(),view);
}
/// \ingroup TIFF_IO
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk