We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20dd5ad commit fb83a89Copy full SHA for fb83a89
book/src/getting-started/2-our-first-cxx-qt-module.md
@@ -107,7 +107,7 @@ In our case that means:
107
- `#[qproperty(i32, number)]` ⇾ `Q_PROPERTY(::std::int32_t number ...)`
108
- `#[qproperty(QString, string)` ⇾ `Q_PROPERTY(QString string ...)`
109
110
-For `i32`, CXX-Qt already knows how to translate it.
+For `i32`, CXX already knows how to translate it.
111
A `QString` however is unknown to CXX.
112
Luckily, the [`cxx_qt_lib`](https://docs.rs/cxx-qt-lib/latest/cxx_qt_lib/) crate already wraps many Qt types for us.
113
We can just include them in the bridge like any other CXX type:
0 commit comments