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

This commit is contained in:
Albert S. 2022-10-26 13:13:20 +02:00
parent 496aefaa09
commit 9e1bc98f38
1 changed files with 3 additions and 3 deletions

View File

@ -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();