summaryrefslogtreecommitdiffstats
path: root/src/Common/Request.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/Request.h')
-rw-r--r--src/Common/Request.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Request.h b/src/Common/Request.h
index ac59e45..d1b5851 100644
--- a/src/Common/Request.h
+++ b/src/Common/Request.h
@@ -47,7 +47,7 @@ class Request : public RequestHandler {
Core::Signals::Signal2<boost::shared_ptr<const XmlPacket>, Core::Exception> finished;
protected:
- Request() : isFinished(false) {}
+ Request(Application *application) : RequestHandler(application), isFinished(false), finished(application) {}
void signalFinished(boost::shared_ptr<const XmlPacket> pkt, Core::Exception exp) {
{