diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-01-04 02:20:38 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-01-04 02:20:38 +0000 |
commit | 4eec29ac0f6a9b05562ac0fbe3d4e5d7e82deeac (patch) | |
tree | 0b18ed6970f8fdd6750459e6f9032e444d253580 /src/gui/updatewindow.h | |
parent | e160ba567bf3d2ae915e67c12c13e213c1a32a62 (diff) | |
download | mana-client-4eec29ac0f6a9b05562ac0fbe3d4e5d7e82deeac.tar.gz mana-client-4eec29ac0f6a9b05562ac0fbe3d4e5d7e82deeac.tar.bz2 mana-client-4eec29ac0f6a9b05562ac0fbe3d4e5d7e82deeac.tar.xz mana-client-4eec29ac0f6a9b05562ac0fbe3d4e5d7e82deeac.zip |
Merged 0.0 changes from revision 2898 to 2988 to trunk.
Diffstat (limited to 'src/gui/updatewindow.h')
-rw-r--r-- | src/gui/updatewindow.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/gui/updatewindow.h b/src/gui/updatewindow.h index 16442656..0d1493ee 100644 --- a/src/gui/updatewindow.h +++ b/src/gui/updatewindow.h @@ -141,6 +141,11 @@ class UpdaterWindow : public Window, public gcn::ActionListener std::string mCurrentFile; /** + * The Adler32 checksum of the file currently downloading. + */ + unsigned long mCurrentChecksum; + + /** * Absolute path to locally save downloaded files. */ std::string mBasePath; @@ -179,12 +184,12 @@ class UpdaterWindow : public Window, public gcn::ActionListener /** * List of files to download */ - std::vector<std::string> mFiles; + std::vector<std::string> mLines; /** * Index of the file to be downloaded */ - unsigned int mFileIndex; + unsigned int mLineIndex; gcn::Label *mLabel; /**< Progress bar caption. */ Button *mCancelButton; /**< Button to stop the update process. */ |