From 99f8b14bc170c0ae2489a031b4575767bdb38d4a Mon Sep 17 00:00:00 2001 From: Ilia Popov Date: Sun, 6 Jun 2010 20:24:31 +0200 Subject: [PATCH] Fixed changing file saving parameters (format and quality) --- rtgui/batchqueuepanel.cc | 3 ++- rtgui/batchqueuepanel.h | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) 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