Fixed the overloaded Response constructor

This commit is contained in:
Joe Ferris 2011-05-05 19:13:25 -04:00
parent 728feeeff7
commit 0bc2a6b54f
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ Response::Response(bool success, QString message) {
}
Response::Response(bool success) {
Response(success, QString());
m_success = success;
}
bool Response::isSuccess() const {