diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-16 08:53:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-16 08:53:37 +0100 |
| commit | 75cb27e8fc24c1b526802289dbddd67127142379 (patch) | |
| tree | 7a8aab486371a6887fb5daaa925e97e7e63ffd82 /src/wx/image_sequence_dialog.cc | |
| parent | df16b07cb1802c8f4485d75db3b2dec67521e599 (diff) | |
More float -> double.
Diffstat (limited to 'src/wx/image_sequence_dialog.cc')
| -rw-r--r-- | src/wx/image_sequence_dialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/image_sequence_dialog.cc b/src/wx/image_sequence_dialog.cc index 48af6afa1..12d12182f 100644 --- a/src/wx/image_sequence_dialog.cc +++ b/src/wx/image_sequence_dialog.cc @@ -29,11 +29,11 @@ ImageSequenceDialog::ImageSequenceDialog (wxWindow* parent) layout (); } -float +double ImageSequenceDialog::frame_rate () const { try { - return raw_convert<float> (wx_to_std (_frame_rate->GetValue ())); + return raw_convert<double> (wx_to_std (_frame_rate->GetValue ())); } catch (...) { } |
