diff options
author | Ken Moore <ken@ixsystems.com> | 2019-01-02 09:31:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-02 09:31:52 -0500 |
commit | cd407705124fefe2b293120c845319c369929c86 (patch) | |
tree | 635f1cea2c9a39ee7495396a43aa04957dad7f2a /src-qt5/desktop-utils/lumina-pdf/PropDialog.h | |
parent | Merge pull request #644 from maxsteciuk/bugfix/lumina-fm-crash-on-startup (diff) | |
parent | Switches from keeping links in a QHash to a std::vector. This fixes some race... (diff) | |
download | lumina-cd407705124fefe2b293120c845319c369929c86.tar.gz lumina-cd407705124fefe2b293120c845319c369929c86.tar.bz2 lumina-cd407705124fefe2b293120c845319c369929c86.zip |
Merge pull request #642 from stackyjoe/master
Some changes and fixes to LuminaPDF
Diffstat (limited to 'src-qt5/desktop-utils/lumina-pdf/PropDialog.h')
-rw-r--r-- | src-qt5/desktop-utils/lumina-pdf/PropDialog.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src-qt5/desktop-utils/lumina-pdf/PropDialog.h b/src-qt5/desktop-utils/lumina-pdf/PropDialog.h index aa8f4d92..6d92eea5 100644 --- a/src-qt5/desktop-utils/lumina-pdf/PropDialog.h +++ b/src-qt5/desktop-utils/lumina-pdf/PropDialog.h @@ -6,24 +6,24 @@ //=========================================== #pragma once +#include "Renderer.h" #include <QDialog> #include <QTextEdit> -#include "Renderer.h" -namespace Ui{ - class PropDialog; +namespace Ui { +class PropDialog; }; class PropDialog : public QDialog { Q_OBJECT - public: - PropDialog(Renderer *Backend); +public: + PropDialog(Renderer *Backend); - public slots: - void setSize(QSizeF); - void setInformation(); +public slots: + void setSize(QSizeF); + void setInformation(); - private: - Ui::PropDialog *ui; - Renderer *BACKEND; +private: + Ui::PropDialog *ui; + Renderer *BACKEND; }; |