Ticket Hash: | a21973499086835d0e3189ed0d06fe95d68b83c6 | ||
Title: | Build Fail on Manjaro Linux | ||
Status: | Open | Type: | Code_Defect |
Severity: | Critical | Priority: | |
Subsystem: | Resolution: | ||
Last Modified: |
2019-01-05 12:11:47 6.49 years ago |
Created: |
2019-01-05 12:11:47 6.49 years ago |
Version Found In: | 6b21c5057d |
User Comments: | ||||
anonymous added on 2019-01-05 12:11:47:
(text/x-fossil-wiki)
* I've got this error: <pre> src/CommitDialog.cpp:58:49: error: invalid use of incomplete type ‘class QAction’ QAction* action = new QAction(ui->plainTextEdit); </pre> * This is my system configuration: <pre> Kernel: 4.19.13-1-MANJARO x86_64 bits: 64 Desktop: Xfce 4.12.4 Distro: Manjaro Linux ManjaroLinux 18.0.2 (Illyria) qt5-base 5.12.0-1.1 qt5-webkit 5.212.0alpha2-22 </pre> * This is how I fixed the build: <pre> src/MainWindow.h: #include <QMainWindow> #include <QStringList> #include <QFileIconProvider> + #include <QAction> #include "AppSettings.h" #include "Workspace.h" </pre> |