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
父節點 496aefaa09
當前提交 9e1bc98f38
共有 1 個檔案被更改,包括 3 行新增3 行删除

查看文件

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