summaryrefslogtreecommitdiff
path: root/fetchforumsaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fetchforumsaction.cpp')
-rw-r--r--fetchforumsaction.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/fetchforumsaction.cpp b/fetchforumsaction.cpp
index 8b3e4c8..7b496c3 100644
--- a/fetchforumsaction.cpp
+++ b/fetchforumsaction.cpp
@@ -13,6 +13,12 @@ FetchForumsAction::FetchForumsAction(Board *board) :
{
}
+bool FetchForumsAction::isSupersetOf(Action *action) const
+{
+ // If 'action' is also a fetch forums list action then yes, this supersets 'action'.
+ return qobject_cast<FetchForumsAction*>(action) != 0;
+}
+
void FetchForumsAction::execute()
{
_call = _board->service()->asyncCall("get_forum");