detect recovery devices, cleanup code , use const pointers wherever possible, refactor img thumbnail loading, refactor gallery widget

This commit is contained in:
uncor3
2026-03-02 23:25:06 +00:00
parent df0f0f32a7
commit 35c5985f47
64 changed files with 1490 additions and 1260 deletions
+3 -3
View File
@@ -32,7 +32,7 @@ class DevDiskImageHelper : public QDialog
{
Q_OBJECT
public:
explicit DevDiskImageHelper(iDescriptorDevice *device,
explicit DevDiskImageHelper(const iDescriptorDevice *device,
QWidget *parent = nullptr);
// Start the mounting process
@@ -55,10 +55,10 @@ private:
void showStatus(const QString &message, bool isError = false);
void showMountUI();
void showRetryUI(const QString &errorMessage);
void finishWithSuccess();
void finishWithSuccess(bool wait = false);
void finishWithError(const QString &errorMessage);
iDescriptorDevice *m_device;
const iDescriptorDevice *m_device;
QLabel *m_statusLabel;
QProcessIndicator *m_loadingIndicator;