diff options
Diffstat (limited to 'src/gui/widgets/guitable.cpp')
-rw-r--r-- | src/gui/widgets/guitable.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/widgets/guitable.cpp b/src/gui/widgets/guitable.cpp index 460fd4218..e3dda4162 100644 --- a/src/gui/widgets/guitable.cpp +++ b/src/gui/widgets/guitable.cpp @@ -97,16 +97,16 @@ GuiTable::GuiTable(const Widget2 *const widget, Widget2(widget), gcn::MouseListener(), gcn::KeyListener(), - mLinewiseMode(false), - mWrappingEnabled(false), - mOpaque(opacity), mModel(nullptr), - mSelectedRow(0), - mSelectedColumn(0), mTopWidget(nullptr), mActionListeners(), mBackgroundColor(getThemeColor(Theme::BACKGROUND)), - mHighlightColor(getThemeColor(Theme::HIGHLIGHT)) + mHighlightColor(getThemeColor(Theme::HIGHLIGHT)), + mSelectedRow(0), + mSelectedColumn(0), + mLinewiseMode(false), + mWrappingEnabled(false), + mOpaque(opacity) { setModel(initial_model); setFocusable(true); |