diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-31 22:20:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-31 22:20:30 +0100 |
| commit | 291e2fe2e7df95019feba8097b68b31ec64be794 (patch) | |
| tree | cdac55d0ed47721190529b3443664bd3f64aa862 /src/wx/content_properties_dialog.h | |
| parent | 7d9321ff829498c2c87d924a9b660acbfdafa6b3 (diff) | |
Restore some missing stuff to the content properties dialogue.
Diffstat (limited to 'src/wx/content_properties_dialog.h')
| -rw-r--r-- | src/wx/content_properties_dialog.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/wx/content_properties_dialog.h b/src/wx/content_properties_dialog.h index dc4c52293..eb6f11ddb 100644 --- a/src/wx/content_properties_dialog.h +++ b/src/wx/content_properties_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2015 Carl Hetherington <cth@carlh.net> + Copyright (C) 2015-2016 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -20,11 +20,17 @@ #include "table_dialog.h" #include <boost/shared_ptr.hpp> +#include <list> +#include <map> class Content; +class UserProperty; class ContentPropertiesDialog : public TableDialog { public: ContentPropertiesDialog (wxWindow* parent, boost::shared_ptr<Content> content); + +private: + void maybe_add_group (std::map<std::string, std::list<UserProperty> > const & groups, std::string name); }; |
