aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/widgets/EditorPage.h
diff options
context:
space:
mode:
authorSaturn&Eric <[email protected]>2022-01-05 20:02:19 +0000
committerGitHub <[email protected]>2022-01-05 20:02:19 +0000
commita3ca1bf1d4404327d68d3d49127085638c272152 (patch)
treedeb10c33977e5002fa6e9b434f2b07d2719a4e31 /src/ui/widgets/EditorPage.h
parentMerge pull request #37 from saturneric/document (diff)
parent<doc>(navbar): take repository and GitHub apart. (diff)
downloadGpgFrontend-a3ca1bf1d4404327d68d3d49127085638c272152.tar.gz
GpgFrontend-a3ca1bf1d4404327d68d3d49127085638c272152.zip
Merge pull request #36 from saturneric/developv2.0.4
v2.0.4
Diffstat (limited to 'src/ui/widgets/EditorPage.h')
-rw-r--r--src/ui/widgets/EditorPage.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/widgets/EditorPage.h b/src/ui/widgets/EditorPage.h
index a0a05dab..d1bc1ac2 100644
--- a/src/ui/widgets/EditorPage.h
+++ b/src/ui/widgets/EditorPage.h
@@ -86,17 +86,17 @@ class EditorPage : public QWidget {
void ReadFile();
- [[nodiscard]] bool ReadDone() const { return this->readDone; }
+ [[nodiscard]] bool ReadDone() const { return this->read_done_; }
void PrepareToDestroy();
private:
QTextEdit* textPage; /** The textedit of the tab */
QVBoxLayout* mainLayout; /** The layout for the tab */
- QString fullFilePath; /** The path to the file handled in the tab */
+ QString full_file_path_; /** The path to the file handled in the tab */
bool signMarked{}; /** true, if the signed header is marked, false if not */
- bool readDone = false;
- QThread* readThread = nullptr;
+ bool read_done_ = false;
+ QThread* read_hread_ = nullptr;
private slots: