summaryrefslogtreecommitdiff
path: root/shared/taskbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/taskbar.h')
-rw-r--r--shared/taskbar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/taskbar.h b/shared/taskbar.h
index 02d7324d..acf2d6da 100644
--- a/shared/taskbar.h
+++ b/shared/taskbar.h
@@ -39,7 +39,7 @@ public:
void setProgress(size_t current, size_t total);
private:
- struct Pimpl;
+ class Pimpl;
std::auto_ptr<Pimpl> pimpl_;
};
bgstack15