We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
about qgraphicsitem.rs:6118 `// proto: QTransform QGraphicsItem::itemTransform(const QGraphicsItem * other, bool * ok);
impl<'a> /trait/ QGraphicsItem_itemTransform for (&'a QGraphicsItem, Option<&'a mut Vec>) {`
should be: *mut i8
The text was updated successfully, but these errors were encountered:
You should use a raw pointer. like *mut T or *const T.
*mut T
*const T
It may be *mut bool,
*mut bool
Sorry, something went wrong.
here is a inout parameter, maybe *mut T?
@kitech why?
bool *ok will be set in the called method, like return value.
No branches or pull requests
about qgraphicsitem.rs:6118
`// proto: QTransform QGraphicsItem::itemTransform(const QGraphicsItem * other, bool * ok);
impl<'a> /trait/ QGraphicsItem_itemTransform for (&'a QGraphicsItem, Option<&'a mut Vec>) {`
should be: *mut i8
The text was updated successfully, but these errors were encountered: