diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-07-16 19:26:59 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-07-16 19:26:59 +0000 |
commit | a6db4d8004da5ad985a5ff26c0c01976a5618449 (patch) | |
tree | 5ed3dea6a28222de87840a4d1966338098123993 /src/gui/updatewindow.h | |
parent | f4aedad02e8994f89a4137d175dba2666a7005bc (diff) | |
download | mana-a6db4d8004da5ad985a5ff26c0c01976a5618449.tar.gz mana-a6db4d8004da5ad985a5ff26c0c01976a5618449.tar.bz2 mana-a6db4d8004da5ad985a5ff26c0c01976a5618449.tar.xz mana-a6db4d8004da5ad985a5ff26c0c01976a5618449.zip |
Updated changelog, got rid of remaining extern SDL_Surface *screen cases,
fixed double free and cleaned up a bit.
Diffstat (limited to 'src/gui/updatewindow.h')
-rw-r--r-- | src/gui/updatewindow.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/gui/updatewindow.h b/src/gui/updatewindow.h index f1d460a2..062dc191 100644 --- a/src/gui/updatewindow.h +++ b/src/gui/updatewindow.h @@ -77,25 +77,27 @@ class UpdaterWindow : public Window, public gcn::ActionListener * Set's label above progress */ void setLabel(const std::string &); - + /** * Enables play button */ void enable(); - + /** * Loads and display news */ void loadNews(); - + void action(const std::string& eventId); - void draw(gcn::Graphics *); - - void setText(std:: string row); - + /** + * Add a row to the message field. + */ + void addRow(const std::string &row); + int updateState; }; void updateData(); + #endif |