Small cleanup
[ardour.git] / gtk2_ardour / option_editor.cc
index d49f8a3be0372864ab8d52691baa7205956cb4a3..54424b5ca3619a96677c2dbdc7bdadc4797f8e53 100644 (file)
@@ -485,7 +485,6 @@ DirectoryOption::DirectoryOption (string const & i, string const & n, sigc::slot
 {
        _file_chooser.set_action (Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
        _file_chooser.signal_selection_changed().connect (sigc::mem_fun (*this, &DirectoryOption::selection_changed));
-       _file_chooser.signal_current_folder_changed().connect (sigc::mem_fun (*this, &DirectoryOption::current_folder_set));
 }
 
 
@@ -509,9 +508,3 @@ DirectoryOption::selection_changed ()
 {
        _set (poor_mans_glob(_file_chooser.get_filename ()));
 }
-
-void
-DirectoryOption::current_folder_set ()
-{
-       _set (poor_mans_glob(_file_chooser.get_current_folder ()));
-}