summaryrefslogtreecommitdiff
path: root/src/gui/guiTable.h
diff options
context:
space:
mode:
authorstujones11 <stujones111@gmail.com>2019-05-24 16:42:05 +0100
committerrubenwardy <rw@rubenwardy.com>2019-05-24 16:42:05 +0100
commitb917ea4723fb0fe976486602a456c8dd41eab7ef (patch)
treeab459ae6aaeb19599d19a63b4508dcc60b632386 /src/gui/guiTable.h
parenta2848c9cdeba8d077c61ef20108cb208fd073ef8 (diff)
downloadminetest-b917ea4723fb0fe976486602a456c8dd41eab7ef.tar.gz
minetest-b917ea4723fb0fe976486602a456c8dd41eab7ef.tar.bz2
minetest-b917ea4723fb0fe976486602a456c8dd41eab7ef.zip
Add IGUIScrollbar implementation with variable bar sizes (#8507)
Diffstat (limited to 'src/gui/guiTable.h')
-rw-r--r--src/gui/guiTable.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/guiTable.h b/src/gui/guiTable.h
index f9337ff6d..1893be5c3 100644
--- a/src/gui/guiTable.h
+++ b/src/gui/guiTable.h
@@ -26,6 +26,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <iostream>
#include "irrlichttypes_extrabloated.h"
+#include "guiScrollBar.h"
class ISimpleTextureSource;
@@ -198,7 +199,7 @@ protected:
video::SColor m_highlight_text = video::SColor(255, 255, 255, 255);
s32 m_rowheight = 1;
gui::IGUIFont *m_font = nullptr;
- gui::IGUIScrollBar *m_scrollbar = nullptr;
+ guiScrollBar *m_scrollbar = nullptr;
// Allocated strings and images
std::vector<core::stringw> m_strings;