added mNotify to plugin interfaces

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7006 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2014-01-10 20:27:51 +00:00
parent 97cd659679
commit aa78a41715
2 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -2261,6 +2261,7 @@ int RsServer::StartupRetroShare()
interfaces.mDisc = rsDisc;
interfaces.mDht = rsDht;
interfaces.mForums = mForums;
interfaces.mNotify = mNotify;
mPluginsManager->setInterfaces(interfaces);