From 7bcfda123ffcf8a43be8766733989ab9013dd6d4 Mon Sep 17 00:00:00 2001 From: chrisparker126 Date: Sun, 18 May 2008 20:23:09 +0000 Subject: [PATCH] added utility function to add user, refresh screen, clear scrn git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@557 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/BlogDialog.h | 11 +++++++++++ 1 file changed, 11 insertions(+) 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