summaryrefslogtreecommitdiff
path: root/src/wx/dir_picker_ctrl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/dir_picker_ctrl.h')
-rw-r--r--src/wx/dir_picker_ctrl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/dir_picker_ctrl.h b/src/wx/dir_picker_ctrl.h
index f70168db4..31df9518c 100644
--- a/src/wx/dir_picker_ctrl.h
+++ b/src/wx/dir_picker_ctrl.h
@@ -33,7 +33,7 @@ LIBDCP_ENABLE_WARNINGS
class DirPickerCtrl : public wxPanel
{
public:
- explicit DirPickerCtrl (wxWindow *);
+ DirPickerCtrl(wxWindow *, bool leaf = false);
wxString GetPath () const;
void SetPath (wxString);
@@ -47,6 +47,7 @@ private:
wxButton* _browse;
wxString _path;
wxSizer* _sizer;
+ bool _leaf = false;
};
#endif