make it compile
svn path=/trunk/kdebase/kwin/; revision=369635
This commit is contained in:
parent
4c091d07d2
commit
46259d08ff
1 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue