diff options
| -rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
| -rw-r--r-- | src/src/settingsdialogupdates.cpp | 1 | ||||
| -rw-r--r-- | src/src/settingsdialogupdates.h | 3 |
3 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 757909e..0525c28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,7 +71,7 @@ jobs: -e FLUORINE_BUILD_COMMIT=${{ steps.channel.outputs.commit }} \ -w /src \ fluorine-builder:latest \ - bash -c 'ccache -s; bash /src/docker/build-inner.sh; echo "=== ccache stats after build ==="; ccache -s' + bash -c 'ccache -s; bash /src/docker/build-inner.sh; status=$?; echo "=== ccache stats after build ==="; ccache -s; exit $status' - name: Package tarball run: | diff --git a/src/src/settingsdialogupdates.cpp b/src/src/settingsdialogupdates.cpp index b46ff1e..c5441d1 100644 --- a/src/src/settingsdialogupdates.cpp +++ b/src/src/settingsdialogupdates.cpp @@ -1,6 +1,7 @@ #include "settingsdialogupdates.h" #include "fluorineupdater.h" +#include "settings.h" #include "ui_settingsdialog.h" #include <fluorine_build_info.h> diff --git a/src/src/settingsdialogupdates.h b/src/src/settingsdialogupdates.h index 7a39311..9712beb 100644 --- a/src/src/settingsdialogupdates.h +++ b/src/src/settingsdialogupdates.h @@ -3,6 +3,8 @@ #include "settingsdialog.h" +#include <QCoreApplication> + class QCheckBox; class QComboBox; class QLabel; @@ -15,6 +17,7 @@ class FluorineUpdater; // "Check for updates now" button with live status feedback. class UpdatesSettingsTab : public SettingsTab { + Q_DECLARE_TR_FUNCTIONS(UpdatesSettingsTab) public: UpdatesSettingsTab(Settings& settings, SettingsDialog& dialog); |
