aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/struct/GpgOperaResult.h
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-01-27 22:12:00 +0000
committersaturneric <[email protected]>2025-01-27 22:12:00 +0000
commita66d868f500c0bd94fe9783172ac3d17b1dbb6f5 (patch)
tree3c2c07e0ec717fac5beec08d9678bd311a84e134 /src/ui/struct/GpgOperaResult.h
parentrefactor: reduce code duplication of gnupg file operations (diff)
downloadGpgFrontend-a66d868f500c0bd94fe9783172ac3d17b1dbb6f5.tar.gz
GpgFrontend-a66d868f500c0bd94fe9783172ac3d17b1dbb6f5.zip
refactor: reduce code duplication of gnupg operations
Diffstat (limited to 'src/ui/struct/GpgOperaResult.h')
-rw-r--r--src/ui/struct/GpgOperaResult.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/struct/GpgOperaResult.h b/src/ui/struct/GpgOperaResult.h
index 7ee6ad37..18eef96a 100644
--- a/src/ui/struct/GpgOperaResult.h
+++ b/src/ui/struct/GpgOperaResult.h
@@ -28,12 +28,14 @@
#pragma once
+#include "core/model/GFBuffer.h"
namespace GpgFrontend::UI {
struct GpgOperaResult {
int status;
QString report;
QString tag;
+ GFBuffer o_buffer;
GpgOperaResult(int status, QString report, QString tag);
};