-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow build with Qt6 #1
Conversation
I believe the overflow when int is used instead of qint64 for is not necessary for now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mostly seems ok, but couple small comments.
vkPost->replyPostId = extra.value(POST_REPLY_POST_ID_KEY).toInt(); | ||
vkPost->friendsOnly = extra.value(POST_FRIENDS_ONLY_KEY).toBool(); | ||
vkPost->signerId = extra.value(POST_SIGNER_ID_KEY).toInt(); | ||
vkPost->fromId = QVariant(extra.value(POST_FROM_ID_KEY)).toInt(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, not following. value() on QVariantMap should already return a QVariant?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess, I wasn't able to compile it without that. I need to check it again
Not to get stuck on the QVariantMap, I pushed all the other changes now. Closing this now. If any further need, can open new PRs. |
todo: