diff --git a/retroshare-gui/src/gui/BlogDialog.h b/retroshare-gui/src/gui/BlogDialog.h index 8282dbaf0..8bdad1105 100644 --- a/retroshare-gui/src/gui/BlogDialog.h +++ b/retroshare-gui/src/gui/BlogDialog.h @@ -41,12 +41,21 @@ public slots: void sendBlog(); void setFont(); void setStatus(); + /// populates blog service with current information from core + void update(); + private slots: /*nothing here yet */ private: +/// to add usr to usr list: utility function for update +void addUser(const std::string& usr); + +/// remove everything from usrlist and blogText box +void clear(); + /* Current Font */ QFont mCurrentFont; @@ -55,5 +64,7 @@ QFont mUsrFont; }; + + #endif