summaryrefslogtreecommitdiff
path: root/fetchpostsaction.cpp
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2013-04-04 00:00:38 +0200
committerJavier S. Pedro <maemo@javispedro.com>2013-04-04 00:00:38 +0200
commit5d8d6fed3fd7dd796a5a3093a7dbd46fab8d380a (patch)
tree56d1aa55260d0081cfd99b52c53f5ddc78cba200 /fetchpostsaction.cpp
parenta6d8b23fd03993c0b94d21806ac3a36e251c8b9c (diff)
downloadtapasboard-5d8d6fed3fd7dd796a5a3093a7dbd46fab8d380a.tar.gz
tapasboard-5d8d6fed3fd7dd796a5a3093a7dbd46fab8d380a.zip
pass Board objects instead of boardUrls around QML
Diffstat (limited to 'fetchpostsaction.cpp')
-rw-r--r--fetchpostsaction.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/fetchpostsaction.cpp b/fetchpostsaction.cpp
index 7ed9140..0e4284b 100644
--- a/fetchpostsaction.cpp
+++ b/fetchpostsaction.cpp
@@ -30,6 +30,7 @@ void FetchPostsAction::execute()
{
_call = _board->service()->asyncCall("get_thread",
QString::number(_topicId), _start, _end);
+ _call->setParent(this);
connect(_call, SIGNAL(finished(XmlRpcPendingCall*)), SLOT(handleFinishedCall()));
}