-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<<QT::endl; replaced w/ << "QT::endl"; #28
Comments
Hi. That was odd. I will look into it. |
I added the dependency information to the README (https://github.com/SverrirValgeirsson/Todour/blob/master/README.md) |
Intresting that I get none of these errors when building on Ubuntu 20.04. |
I am trying out Todour, and found the same as @musclecar289 regarding Qt::endl. mainwindow.cpp: In constructor ‘MainWindow::MainWindow(QWidget*)’: Using Ubuntu 20, where Suggestion for those having this issue: use the commands below to replace Qt::endl with "\n".
|
Hi. I will add a better solutions before closing this issue |
Qt compilation error on Ubuntu 20.04.
To fix I replaced
<<QT::endl;
with<< "QT::endl";
in mainwindow.cpp and todotxt.cpp.Also needed to install:
The text was updated successfully, but these errors were encountered: