gui: mainwindow.h: Initialize preview-related members with a default

Esse commit está contido em:
Albert S. 2022-10-26 13:13:20 +02:00
commit 9e1bc98f38
1 arquivos alterados com 3 adições e 3 exclusões

Ver arquivo

@ -44,9 +44,9 @@ class MainWindow : public QMainWindow
QHash<QString, int> previewOrder; /* Quick lookup for the order a preview should have */
QMap<int, QWidget *>
previewWidgetOrderCache /* Saves those that arrived out of order to be inserted later at the correct pos */;
bool previewDirty;
int previewsPerPage;
unsigned int processedPdfPreviews;
bool previewDirty = false;
int previewsPerPage = 20;
unsigned int processedPdfPreviews = 0;
unsigned int currentPreviewGeneration = 1;
void connectSignals();