summaryrefslogtreecommitdiff
path: root/gtk2_ardour/sfdb_ui.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-02-28 16:28:44 +0100
committerRobin Gareus <robin@gareus.org>2017-02-28 16:29:10 +0100
commitf1571ab7edc65ec1fc507b05d7bbc397b3549007 (patch)
treeb53e14a5e430a69b2fd34aae06eb8516380abd43 /gtk2_ardour/sfdb_ui.cc
parent29fcca147b064bbbbb3f93d312b42c5a7dc1f103 (diff)
initialize some uninitialized vars
Diffstat (limited to 'gtk2_ardour/sfdb_ui.cc')
-rw-r--r--gtk2_ardour/sfdb_ui.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/sfdb_ui.cc b/gtk2_ardour/sfdb_ui.cc
index fd08e14419..423b15c190 100644
--- a/gtk2_ardour/sfdb_ui.cc
+++ b/gtk2_ardour/sfdb_ui.cc
@@ -143,7 +143,9 @@ SoundFileBox::SoundFileBox (bool /*persistent*/)
main_box (false, 6),
autoplay_btn (_("Auto-play")),
seek_slider(0,1000,1),
- _seeking(false)
+ _seeking(false),
+ _src_quality (SrcBest),
+ _import_position (ImportAtTimestamp)
{
set_name (X_("SoundFileBox"));