diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-20 16:38:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-20 16:38:52 +0300 |
commit | 73fac88b0263962c90d2d649938e6a4a5b11a246 (patch) | |
tree | 2f058980977cf73a9b8fb7ccbdb727a6bfd5bb16 /src/guichan/widget.cpp | |
parent | 747dc30f256606e28fd932a9626da7c328114036 (diff) | |
download | mv-73fac88b0263962c90d2d649938e6a4a5b11a246.tar.gz mv-73fac88b0263962c90d2d649938e6a4a5b11a246.tar.bz2 mv-73fac88b0263962c90d2d649938e6a4a5b11a246.tar.xz mv-73fac88b0263962c90d2d649938e6a4a5b11a246.zip |
fix style in guichan directory.
Diffstat (limited to 'src/guichan/widget.cpp')
-rw-r--r-- | src/guichan/widget.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/guichan/widget.cpp b/src/guichan/widget.cpp index d1150dbf0..e7838e4d9 100644 --- a/src/guichan/widget.cpp +++ b/src/guichan/widget.cpp @@ -71,6 +71,12 @@ namespace gcn std::set<Widget*> Widget::mWidgetsSet; Widget::Widget() : + mMouseListeners(), + mKeyListeners(), + mActionListeners(), + mDeathListeners(), + mFocusListeners(), + mWidgetListeners(), mForegroundColor(0x000000), mBackgroundColor(0xffffff), mBaseColor(0x808090), @@ -78,12 +84,15 @@ namespace gcn mFocusHandler(nullptr), mInternalFocusHandler(nullptr), mParent(nullptr), + mDimension(), mFrameSize(0), + mActionEventId(), mFocusable(false), mVisible(true), mTabIn(true), mTabOut(true), mEnabled(true), + mId(), mCurrentFont(nullptr) { mWidgets.push_back(this); |