summaryrefslogtreecommitdiff
path: root/src/wx/properties_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/properties_dialog.h')
-rw-r--r--src/wx/properties_dialog.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wx/properties_dialog.h b/src/wx/properties_dialog.h
index 25c11e8d0..f72c83419 100644
--- a/src/wx/properties_dialog.h
+++ b/src/wx/properties_dialog.h
@@ -20,6 +20,7 @@
#include <wx/wx.h>
class Film;
+class ThreadedStaticText;
class PropertiesDialog : public wxDialog
{
@@ -27,9 +28,12 @@ public:
PropertiesDialog (wxWindow *, Film *);
private:
+ std::string frames_already_encoded () const;
+
+ Film* _film;
wxStaticText* _frames;
wxStaticText* _disk_for_frames;
wxStaticText* _total_disk;
- wxStaticText* _encoded;
+ ThreadedStaticText* _encoded;
};