summaryrefslogtreecommitdiff
path: root/src/lib/decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-02-08 13:07:16 +0000
committerCarl Hetherington <cth@carlh.net>2013-02-08 13:07:16 +0000
commit2e536ef0971edefea23810b99f7706881072783b (patch)
tree8b96ac62795a5953e942bd6fc0d35d8690b6dfce /src/lib/decoder.cc
parent567abac0d7824f27b8fdcd6fb7da7e5ddae62a0f (diff)
Shuffle Job pointers around slightly.
Diffstat (limited to 'src/lib/decoder.cc')
-rw-r--r--src/lib/decoder.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc
index fd0abee41..30009460f 100644
--- a/src/lib/decoder.cc
+++ b/src/lib/decoder.cc
@@ -26,7 +26,6 @@
#include <boost/lexical_cast.hpp>
#include "film.h"
#include "format.h"
-#include "job.h"
#include "options.h"
#include "exceptions.h"
#include "image.h"
@@ -47,12 +46,10 @@ using boost::optional;
/** @param f Film.
* @param o Decode options.
- * @param j Job that we are running within, or 0
*/
-Decoder::Decoder (boost::shared_ptr<Film> f, DecodeOptions o, Job* j)
+Decoder::Decoder (boost::shared_ptr<Film> f, DecodeOptions o)
: _film (f)
, _opt (o)
- , _job (j)
{
_film_connection = f->Changed.connect (bind (&Decoder::film_changed, this, _1));
}