You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is making it much more difficult to do stuff, such as: Qt::Completer.new(["Option 1", "Option 2"], parent) must be replaced with a full blown model.
The text was updated successfully, but these errors were encountered:
QStringList is technically unsupported, because it inherits from QList<QString> which in turn inherits from QListSpecialMethods<QString>, where several methods are ultimately defined:
Bindgen doesn't consider template specializations at the moment. That said, all these methods can be reimplemented on Crystal easily, since we have Enumerable.
If passing data to Qt is all that's needed, Bindgen master should be enough; wrapping QStringList normally gives a default constructor and #<<. This means you can do the following:
This is making it much more difficult to do stuff, such as:
Qt::Completer.new(["Option 1", "Option 2"], parent)
must be replaced with a full blown model.The text was updated successfully, but these errors were encountered: