qt.rs
qt.rs copied to clipboard
error bool * => Vec<i8>
about qgraphicsitem.rs:6118 `// proto: QTransform QGraphicsItem::itemTransform(const QGraphicsItem * other, bool * ok);
impl<'a> /trait/ QGraphicsItem_itemTransform<QTransform> for (&'a QGraphicsItem, Option<&'a mut Vec
should be: *mut i8
You should use a raw pointer.
like *mut T or *const T.
It may be *mut bool,
here is a inout parameter, maybe *mut T?
@kitech why?
bool *ok will be set in the called method, like return value.