From 0bc2a6b54fe3fb75790555bdd9eda98d7e6c1817 Mon Sep 17 00:00:00 2001 From: Joe Ferris Date: Thu, 5 May 2011 19:13:25 -0400 Subject: [PATCH] Fixed the overloaded Response constructor --- src/Response.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Response.cpp b/src/Response.cpp index 39c0956..2abbba2 100644 --- a/src/Response.cpp +++ b/src/Response.cpp @@ -7,7 +7,7 @@ Response::Response(bool success, QString message) { } Response::Response(bool success) { - Response(success, QString()); + m_success = success; } bool Response::isSuccess() const {