From 4f5f20faddda56ac52d1055e97934d5f6a4d6192 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Fri, 17 May 2002 22:05:56 +0000 Subject: [PATCH] compile even on my old crappy compiler. (p.s. c-style casts suck ;-) svn path=/trunk/kdebase/kwin/; revision=156058 --- clients/keramik/keramik.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/keramik/keramik.cpp b/clients/keramik/keramik.cpp index 8486f4c576..38a0e90179 100644 --- a/clients/keramik/keramik.cpp +++ b/clients/keramik/keramik.cpp @@ -165,7 +165,7 @@ KeramikHandler::KeramikHandler() // Flip the bitmaps horizontally in right-to-left mode if ( QApplication::reverseLayout() ) { for ( int i = 0; i < NumButtonDecos; i++ ) - flip( (QPixmap*)buttonDecos[i] ); + flip( static_cast(buttonDecos[i]) ); } readConfig();