make it compile

svn path=/trunk/kdebase/kwin/; revision=369635
icc-effect-5.14.5
André Wöbbeking 2004-12-10 15:36:46 +00:00
parent 4c091d07d2
commit 46259d08ff
1 changed files with 6 additions and 2 deletions

View File

@ -75,8 +75,12 @@ bool ButtonDrag::decode( QDropEvent* e, Button& btn )
ushort type;
stream >> type;
btn.type = QChar(type);
stream >> (int) btn.duplicate;
stream >> (int) btn.supported;
int duplicate;
stream >> duplicate;
btn.duplicate = duplicate;
int supported;
stream >> supported;
btn.supported = supported;
return TRUE;
}
return FALSE;