summaryrefslogtreecommitdiff
path: root/src/wx/make_chain_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-02-15 16:52:58 +0100
committerCarl Hetherington <cth@carlh.net>2022-02-15 16:52:58 +0100
commit551d099baf7519988354bc3d6699cfa2f12daea1 (patch)
tree638e4b82f3399538f2829c332ca31858cad0e2bf /src/wx/make_chain_dialog.h
parentfa85cc6352a2f25bdd1d4421c9490f9fca266e04 (diff)
Allow configurable certificate validity periods.carsten-cert-validity
Diffstat (limited to 'src/wx/make_chain_dialog.h')
-rw-r--r--src/wx/make_chain_dialog.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/wx/make_chain_dialog.h b/src/wx/make_chain_dialog.h
index 018db99a2..00be22c97 100644
--- a/src/wx/make_chain_dialog.h
+++ b/src/wx/make_chain_dialog.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -18,12 +18,17 @@
*/
+
#ifndef DCPOMATIC_MAKE_CHAIN_DIALOG_H
#define DCPOMATIC_MAKE_CHAIN_DIALOG_H
+
#include "table_dialog.h"
#include "wx_util.h"
+
+class SpinCtrl;
+
class MakeChainDialog : public TableDialog
{
public:
@@ -37,6 +42,8 @@ private:
wxTextCtrl* _root_common_name;
wxTextCtrl* _intermediate_common_name;
wxTextCtrl* _leaf_common_name;
+ SpinCtrl* _validity;
};
+
#endif