From aa78a41715140f14a71039bc7dfdf78a15e9202a Mon Sep 17 00:00:00 2001 From: csoler Date: Fri, 10 Jan 2014 20:27:51 +0000 Subject: [PATCH] added mNotify to plugin interfaces git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7006 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- libretroshare/src/retroshare/rsplugin.h | 2 ++ libretroshare/src/rsserver/rsinit.cc | 1 + 2 files changed, 3 insertions(+) diff --git a/libretroshare/src/retroshare/rsplugin.h b/libretroshare/src/retroshare/rsplugin.h index 83abec566..fdd8711ff 100644 --- a/libretroshare/src/retroshare/rsplugin.h +++ b/libretroshare/src/retroshare/rsplugin.h @@ -43,6 +43,7 @@ class RsDht ; class RsDisc ; class RsMsgs ; class RsForums; +class RsNotify; class p3LinkMgr ; class MainPage ; class QIcon ; @@ -100,6 +101,7 @@ public: RsDisc *mDisc; RsDht *mDht; RsForums *mForums; + RsNotify *mNotify; }; class RsPlugin diff --git a/libretroshare/src/rsserver/rsinit.cc b/libretroshare/src/rsserver/rsinit.cc index ae818eb79..65c27dda6 100644 --- a/libretroshare/src/rsserver/rsinit.cc +++ b/libretroshare/src/rsserver/rsinit.cc @@ -2261,6 +2261,7 @@ int RsServer::StartupRetroShare() interfaces.mDisc = rsDisc; interfaces.mDht = rsDht; interfaces.mForums = mForums; + interfaces.mNotify = mNotify; mPluginsManager->setInterfaces(interfaces);