Skip to content

Commit

Permalink
[Qt] QFlag won't take a ulong on an LP64 environment. Contributes
Browse files Browse the repository at this point in the history
JB#36790
  • Loading branch information
Andrew Branson committed Nov 10, 2016
1 parent 767ef11 commit 4b6ced0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extensions/qcontactstatusflags_impl.h
Expand Up @@ -55,7 +55,7 @@ void QContactStatusFlags::setFlags(Flags flags)

QContactStatusFlags::Flags QContactStatusFlags::flags() const
{
return Flags(static_cast<ulong>(flagsValue()));
return Flags(static_cast<uint>(flagsValue()));
}

void QContactStatusFlags::setFlagsValue(quint64 value)
Expand Down

0 comments on commit 4b6ced0

Please sign in to comment.