diff options
author | Saturneric <[email protected]> | 2021-08-20 11:47:45 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-08-20 11:47:45 +0000 |
commit | 2e27baf284fde00c5fc1d81e1f8bc891b8163766 (patch) | |
tree | afe51202a3e615fcd9c5946f031099f4373332c0 /include/ui/FileEncryptionDialog.h | |
parent | Bugs Fixed; (diff) | |
download | GpgFrontend-2e27baf284fde00c5fc1d81e1f8bc891b8163766.tar.gz GpgFrontend-2e27baf284fde00c5fc1d81e1f8bc891b8163766.zip |
Improve Functions;
Bugs Fixed;
Diffstat (limited to '')
-rwxr-xr-x | include/ui/FileEncryptionDialog.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/ui/FileEncryptionDialog.h b/include/ui/FileEncryptionDialog.h index f4adb18f..be9ddd22 100755 --- a/include/ui/FileEncryptionDialog.h +++ b/include/ui/FileEncryptionDialog.h @@ -102,14 +102,14 @@ public slots: void slotShowKeyList(); private: - QLineEdit *outputFileEdit; /**< TODO */ - QLineEdit *inputFileEdit; /**< TODO */ - QLineEdit *signFileEdit; /**< TODO */ - DialogAction mAction; /**< TODO */ - QLabel *statusLabel; /**< TODO */ + QLineEdit *outputFileEdit; + QLineEdit *inputFileEdit; + QLineEdit *signFileEdit; + DialogAction mAction; + QLabel *statusLabel; protected: - GpgME::GpgContext *mCtx; /**< TODO */ - KeyList *mKeyList; /**< TODO */ + GpgME::GpgContext *mCtx; + KeyList *mKeyList; }; |