diff --git a/rtgui/batchqueuepanel.cc b/rtgui/batchqueuepanel.cc index ef0761ebe..676039c05 100644 --- a/rtgui/batchqueuepanel.cc +++ b/rtgui/batchqueuepanel.cc @@ -241,7 +241,8 @@ void BatchQueuePanel::pathFolderChanged () { options.savePathFolder = outdirFolder->get_filename(); } -void BatchQueuePanel::formatChanged () { +void BatchQueuePanel::formatChanged (Glib::ustring f) { options.saveFormat = saveFormatPanel->getFormat (); + } diff --git a/rtgui/batchqueuepanel.h b/rtgui/batchqueuepanel.h index b38b15989..122c121df 100644 --- a/rtgui/batchqueuepanel.h +++ b/rtgui/batchqueuepanel.h @@ -72,8 +72,7 @@ class BatchQueuePanel : public Gtk::VBox, void saveOptions (); void pathFolderChanged (); - void formatChanged (); + void formatChanged (Glib::ustring f); }; - #endif