We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
X11 build fails for typos in the constructors of QMAApplication class. Please apply the following patch.
--- a/QMA/QMAWindow.h +++ b/QMA/QMAWindow.h @@ -57,8 +57,8 @@ public: QMAApplication(int &argc, char **argv, bool GUIenabled) : QApplication(argc, argv, GUIenabled) {} QMAApplication(int &argc, char **argv, Type type) : QApplication(argc, argv, type) {} #if defined(Q_WS_X11) - QApplication(Display* dpy, Qt::HANDLE visual = 0, Qt::HANDLE cmap = 0) : QApplication(dpy, visual, cmap) {} - QApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE cmap= 0) : QApplication(dpy, argc, argv, visual, cmap) {} + QMAApplication(Display* dpy, Qt::HANDLE visual = 0, Qt::HANDLE cmap = 0) : QApplication(dpy, visual, cmap) {} + QMAApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE cmap= 0) : QApplication(dpy, argc, argv, visual, cmap) {} #endif signals:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
X11 build fails for typos in the constructors of QMAApplication class. Please apply the following patch.
The text was updated successfully, but these errors were encountered: