compile even on my old crappy compiler.
(p.s. c-style casts suck ;-) svn path=/trunk/kdebase/kwin/; revision=156058
This commit is contained in:
parent
947ee7a09e
commit
4f5f20fadd
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ KeramikHandler::KeramikHandler()
|
||||||
// Flip the bitmaps horizontally in right-to-left mode
|
// Flip the bitmaps horizontally in right-to-left mode
|
||||||
if ( QApplication::reverseLayout() ) {
|
if ( QApplication::reverseLayout() ) {
|
||||||
for ( int i = 0; i < NumButtonDecos; i++ )
|
for ( int i = 0; i < NumButtonDecos; i++ )
|
||||||
flip( (QPixmap*)buttonDecos[i] );
|
flip( static_cast<QPixmap*&>(buttonDecos[i]) );
|
||||||
}
|
}
|
||||||
|
|
||||||
readConfig();
|
readConfig();
|
||||||
|
|
Loading…
Reference in a new issue