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
Here is an hack experience to share. I hope the maintainer of this project could notic such tiny issue.
build the example-crud
the main function arguments list bothers the compiler in Qt Creator (shown as the image below), the QCoreApplication requires the QCoreApplication constructor to accept a char* argv[] instead of const char* argv[] , when I delete the const qualifier, I got a build pass.
The text was updated successfully, but these errors were encountered:
Here is an hack experience to share. I hope the maintainer of this project could notic such tiny issue.
main
function arguments list bothers the compiler in Qt Creator (shown as the image below), the QCoreApplication requires the QCoreApplication constructor to accept achar* argv[]
instead ofconst char* argv[]
, when I delete the const qualifier, I got a build pass.The text was updated successfully, but these errors were encountered: