From 9752882f8bbe6070f69638d3c54156a1c0e61204 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 1 Jan 2009 21:32:30 +0000 Subject: Fingolfin says: If an #ifdef __SYMBIAN32__ is needed here, the Symbian folks should add it. In the meantime, this FIXME comment serves no purpose :) svn-id: r35652 --- graphics/surface.h | 1 - 1 file changed, 1 deletion(-) (limited to 'graphics') diff --git a/graphics/surface.h b/graphics/surface.h index 2d168a10dd..e6b31e3ccf 100644 --- a/graphics/surface.h +++ b/graphics/surface.h @@ -47,7 +47,6 @@ struct Surface { Surface() : w(0), h(0), pitch(0), pixels(0), bytesPerPixel(0) {} inline const void *getBasePtr(int x, int y) const { - // SumthinWicked says: I was getting a typecast error here from GCC/UIQ: might need an #ifdef __SYMBIAN32__ return static_cast(static_cast(pixels) + y * pitch + x * bytesPerPixel); } -- cgit v1.2.3