diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-28 20:06:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-28 20:06:11 +0300 |
commit | be9b998b2ee87c0238c2ed1b41c8c2bc723f4ce4 (patch) | |
tree | 30427f083bce1d1a67ab3ad17d33a87ee9b21565 /src/gui/widgets/avatarlistbox.h | |
parent | 861c503c608b41256bca47dedee15dc01e09527d (diff) | |
download | plus-be9b998b2ee87c0238c2ed1b41c8c2bc723f4ce4.tar.gz plus-be9b998b2ee87c0238c2ed1b41c8c2bc723f4ce4.tar.bz2 plus-be9b998b2ee87c0238c2ed1b41c8c2bc723f4ce4.tar.xz plus-be9b998b2ee87c0238c2ed1b41c8c2bc723f4ce4.zip |
Fix formatting in gui files.
Diffstat (limited to 'src/gui/widgets/avatarlistbox.h')
-rw-r--r-- | src/gui/widgets/avatarlistbox.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/gui/widgets/avatarlistbox.h b/src/gui/widgets/avatarlistbox.h index e0711a7b7..0ae0b5ee9 100644 --- a/src/gui/widgets/avatarlistbox.h +++ b/src/gui/widgets/avatarlistbox.h @@ -34,33 +34,33 @@ class Image; class AvatarListBox final : public ListBox, public ConfigListener { -public: - AvatarListBox(const Widget2 *const widget, - AvatarListModel *const model); + public: + AvatarListBox(const Widget2 *const widget, + AvatarListModel *const model); - A_DELETE_COPY(AvatarListBox) + A_DELETE_COPY(AvatarListBox) - ~AvatarListBox(); + ~AvatarListBox(); - /** - * Draws the list box. - */ - void draw(Graphics *gcnGraphics) override final; + /** + * Draws the list box. + */ + void draw(Graphics *gcnGraphics) override final; - void mousePressed(MouseEvent &event) override final; + void mousePressed(MouseEvent &event) override final; - void mouseReleased(MouseEvent &event A_UNUSED) override final; + void mouseReleased(MouseEvent &event A_UNUSED) override final; - void optionChanged(const std::string &value) override final; + void optionChanged(const std::string &value) override final; -private: - int mImagePadding; - bool mShowGender; - bool mShowLevel; + private: + int mImagePadding; + bool mShowGender; + bool mShowLevel; - static int instances; - static Image *onlineIcon; - static Image *offlineIcon; + static int instances; + static Image *onlineIcon; + static Image *offlineIcon; }; #endif // GUI_WIDGETS_AVATARLISTBOX_H |