From 2855180dd91a7b25647a4f738e967a4816553e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20G=C3=A2teau?= Date: Thu, 7 May 2015 22:59:10 +0200 Subject: [PATCH] Fix build with g++ 4.9 --- src/doc/test_context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/test_context.h b/src/doc/test_context.h index 7ab4ab49c..9b8e1bb30 100644 --- a/src/doc/test_context.h +++ b/src/doc/test_context.h @@ -37,13 +37,13 @@ namespace doc { void onAddDocument(Document* doc) override { m_activeDoc = doc; - notifyActiveSiteChanged(); + this->notifyActiveSiteChanged(); } void onRemoveDocument(Document* doc) override { if (m_activeDoc == doc) { m_activeDoc = nullptr; - notifyActiveSiteChanged(); + this->notifyActiveSiteChanged(); } }