Fix flicker in timeline view when selecting (in some cases).
[dcpomatic.git] / src / wx / dir_picker_ctrl.h
index 383362f570d97095e296d6559af3e2d23da44b36..f236096598ce07dfbb998fd950b3bda645803a9c 100644 (file)
 
 */
 
+#ifndef DCPOMATIC_DIR_PICKER_CTRL
+#define DCPOMATIC_DIR_PICKER_CTRL
+
 #include <wx/wx.h>
 
 class DirPickerCtrl : public wxPanel
 {
 public:
-       DirPickerCtrl (wxWindow *, wxSize size = wxDefaultSize);
+       explicit DirPickerCtrl (wxWindow *);
 
        wxString GetPath () const;
        void SetPath (wxString);
@@ -36,3 +39,5 @@ private:
        wxString _path;
        wxSizer* _sizer;
 };
+
+#endif