diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-27 15:34:49 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-27 15:34:49 +0000 |
commit | b65aae46de898d71db36f5de9e4c293cd3b05c40 (patch) | |
tree | 1426167d9924a05ff0161b5e6e5f44e02380bc92 /src/gui/updatewindow.h | |
parent | c63776ba5486170404155475bb8f232b92159179 (diff) | |
download | mana-b65aae46de898d71db36f5de9e4c293cd3b05c40.tar.gz mana-b65aae46de898d71db36f5de9e4c293cd3b05c40.tar.bz2 mana-b65aae46de898d71db36f5de9e4c293cd3b05c40.tar.xz mana-b65aae46de898d71db36f5de9e4c293cd3b05c40.zip |
Small cleanups.
Diffstat (limited to 'src/gui/updatewindow.h')
-rw-r--r-- | src/gui/updatewindow.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/updatewindow.h b/src/gui/updatewindow.h index 95c4f9d6..c062b484 100644 --- a/src/gui/updatewindow.h +++ b/src/gui/updatewindow.h @@ -32,7 +32,8 @@ class BrowserBox; class Button; class ProgressBar; class ScrollArea; -class VBox; +class SDL_Thread; +class SDL_mutex; /** * Update progress window GUI @@ -116,12 +117,12 @@ class UpdaterWindow : public Window, public gcn::ActionListener /** * A thread that use libcurl to download updates. */ - class SDL_Thread *mThread; + SDL_Thread *mThread; /** * A mutex to protect shared data between the threads. */ - class SDL_mutex *mMutex; + SDL_mutex *mMutex; /** * Status of the current download. |