summaryrefslogtreecommitdiff
path: root/src/wx/image_sequence_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-07-16 08:53:37 +0100
committerCarl Hetherington <cth@carlh.net>2015-07-16 08:53:37 +0100
commit75cb27e8fc24c1b526802289dbddd67127142379 (patch)
tree7a8aab486371a6887fb5daaa925e97e7e63ffd82 /src/wx/image_sequence_dialog.cc
parentdf16b07cb1802c8f4485d75db3b2dec67521e599 (diff)
More float -> double.
Diffstat (limited to 'src/wx/image_sequence_dialog.cc')
-rw-r--r--src/wx/image_sequence_dialog.cc4
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 (...) {
}