Fix alignment of labels on macOS (#2043).
[dcpomatic.git] / src / wx / playhead_to_timecode_dialog.h
index adce874342879a7c01c42a22dfe2c6173aa24025..15578cdbe84578f10274fdecdb26df14bcbdb291 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2016-2020 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 class PlayheadToTimecodeDialog : public TableDialog
 {
 public:
-       PlayheadToTimecodeDialog (wxWindow* parent, int fps);
+       PlayheadToTimecodeDialog (wxWindow* parent, dcpomatic::DCPTime time, int fps);
 
-       DCPTime get () const;
+       dcpomatic::DCPTime get () const;
 
 private:
-       Timecode<DCPTime>* _timecode;
+       Timecode<dcpomatic::DCPTime>* _timecode;
        int _fps;
 };