aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/PropDialog.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2019-01-02 09:31:52 -0500
committerGitHub <noreply@github.com>2019-01-02 09:31:52 -0500
commitcd407705124fefe2b293120c845319c369929c86 (patch)
tree635f1cea2c9a39ee7495396a43aa04957dad7f2a /src-qt5/desktop-utils/lumina-pdf/PropDialog.h
parentMerge pull request #644 from maxsteciuk/bugfix/lumina-fm-crash-on-startup (diff)
parentSwitches from keeping links in a QHash to a std::vector. This fixes some race... (diff)
downloadlumina-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.h22
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;
};
bgstack15