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

@ -13,18 +13,15 @@ jobs:
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Update repository
run: sudo apt-get update -y
- name: Install the basic dev packages
run: sudo apt-get install -y equivs curl git devscripts lintian build-essential automake autotools-dev cmake g++
- name: Install build dependencies
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
run: dpkg-buildpackage -b -uc -us -j$(nproc)

View file

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