aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/PropDialog.h
diff options
context:
space:
mode:
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