From e18dcb5b9d39efbf1a339f0985af1b8a43bf4be4 Mon Sep 17 00:00:00 2001 From: Edwin Leuven Date: Fri, 25 Aug 2006 10:52:49 +0000 Subject: [PATCH] get rid of comments, c++ style casts git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14837 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/QLImage.C | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/src/frontends/qt4/QLImage.C b/src/frontends/qt4/QLImage.C index 54d9537fa0..08a394b68b 100644 --- a/src/frontends/qt4/QLImage.C +++ b/src/frontends/qt4/QLImage.C @@ -183,14 +183,9 @@ QImage & toGray(QImage & img) int const pixels = img.depth() > 8 ? img.width() * img.height() : img.numColors(); - // FIXME this code used to be like this: - // - //unsigned int * const data = img.depth() > 8 ? - // (unsigned int *)img.bits() : - // (unsigned int *)img.jumpTable(); - // - // But Qt doc just say use bits... - unsigned int * const data = (unsigned int *)img.bits(); + unsigned int *data = img.depth() > 8 ? + reinterpret_cast(img.bits()) : + reinterpret_cast(&img.colorTable()[0]); for(int i = 0; i < pixels; ++i){ int const val = qGray(data[i]); @@ -269,9 +264,6 @@ void QLImage::rotate_impl(Params const & params) QMatrix m; m.rotate(-params.angle); - // FIXME: alpha chanel detection is automautic for monochrome - // and 8-bit images. For 32 bit, is something like still necessary? - //transformed_.setAlphaBuffer(true); transformed_ = transformed_.transformed(m); } -- 2.39.2