summaryrefslogtreecommitdiff
path: root/src/wx/name_format_editor.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-08-16 16:24:33 +0100
committerCarl Hetherington <cth@carlh.net>2016-08-16 16:24:33 +0100
commit03c5a8155043613c01e0e151735a7fcf8ab84415 (patch)
tree671045ad4731e1782e92be9109f48da8b5726081 /src/wx/name_format_editor.h
parent47e78514ffa98c991ddd38d077836f4a558fbec0 (diff)
Tidy up a few details with custom filenames.
Diffstat (limited to 'src/wx/name_format_editor.h')
-rw-r--r--src/wx/name_format_editor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/name_format_editor.h b/src/wx/name_format_editor.h
index 204de76d3..2ae3f5e93 100644
--- a/src/wx/name_format_editor.h
+++ b/src/wx/name_format_editor.h
@@ -30,7 +30,7 @@
class NameFormatEditor
{
public:
- NameFormatEditor (wxWindow* parent, dcp::NameFormat name, dcp::NameFormat::Map titles, dcp::NameFormat::Map examples);
+ NameFormatEditor (wxWindow* parent, dcp::NameFormat name, dcp::NameFormat::Map titles, dcp::NameFormat::Map examples, std::string suffix);
wxPanel* panel () const {
return _panel;
@@ -54,6 +54,7 @@ private:
dcp::NameFormat _name;
dcp::NameFormat::Map _examples;
+ std::string _suffix;
};
#endif