Closed direc85 closed 1 year ago
Interesting indeed. Something about Windows and tempfile
, I guess. I have a Windows 'puter somewhere still, so I can see what's up with that.
It turned out to be a combination of default file extension being .ini
(on all platforms?) and Linux conveniently using IniFormat
when set to NativeFormat
.
I must also say that it would have been convenient to have all tests run to completion even if one test fails. Could that be changed in the future? Thanks...
This just became a blocker to Whisperfish for using master now that we have Rust 1.72 - thanks to the marvelous efforts of @rubdos - so could this please be merged to master? Thanks!
sorry, i didn't see the updated patch.
No worries! Thank you!
Upstream-compatible version of https://github.com/whisperfish/qmetaobject-rs/pull/2
Attempt of adding QSettings wrapper. This was a bit tricky because QSettings can't be copied, so we have to return
QSettings *
instead, and handle the dereference in the client. This leads into having these in the use-side implementation, but there's no obvious way to get rid of that to me: