From 28499ac9087e87f16bbd8303c30f81696969ce1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 28 Mar 2013 13:11:25 +0100 Subject: [PATCH] Fixed outdated documentation. --- src/ImageWrapper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImageWrapper.h b/src/ImageWrapper.h index 132b2526f..3a20cfc6c 100644 --- a/src/ImageWrapper.h +++ b/src/ImageWrapper.h @@ -70,8 +70,8 @@ template class ImageWrapper: public AbstractImage { * @param format Format of pixel data * @param type Data type of pixel data * - * Dimensions and data pointer are set to zero, call setData() to fill - * the image with data. + * Data pointer is set to zero, call setData() to fill the image with + * data. */ inline explicit ImageWrapper(const typename DimensionTraits::VectorType& size, Format format, Type type): AbstractImage(format, type), _size(size), _data(nullptr) {}