Fix pathhistory

This commit is contained in:
reionwong 2021-08-31 00:28:21 +08:00
parent 54a19a9a89
commit c26e8254ec
2 changed files with 5 additions and 7 deletions

View file

@ -23,8 +23,5 @@ jobs:
- name: Install build dependencies - name: Install build dependencies
run: sudo mk-build-deps -i -t "apt-get --yes" -r run: sudo mk-build-deps -i -t "apt-get --yes" -r
- name: Build
run: mkdir build; cd build; cmake .. ; make -j$(nproc);
- name: Build Package - name: Build Package
run: dpkg-buildpackage -b -uc -us -j$(nproc) run: dpkg-buildpackage -b -uc -us -j$(nproc)

View file

@ -21,6 +21,7 @@
#define PATHHISTORY_H #define PATHHISTORY_H
#include <QObject> #include <QObject>
#include <QVector>
class PathHistory : public QObject class PathHistory : public QObject
{ {