diff --git a/components/scrollbar.cpp b/components/scrollbar.cpp new file mode 100644 index 0000000..d7a5791 --- /dev/null +++ b/components/scrollbar.cpp @@ -0,0 +1 @@ +#include "scrollbar.h" diff --git a/components/scrollbar.h b/components/scrollbar.h new file mode 100644 index 0000000..22e976b --- /dev/null +++ b/components/scrollbar.h @@ -0,0 +1,4 @@ +#ifndef SCROLLBAR_H +#define SCROLLBAR_H + +#endif // SCROLLBAR_H diff --git a/qt-material-widgets.pro b/qt-material-widgets.pro index 5f98049..907feb5 100644 --- a/qt-material-widgets.pro +++ b/qt-material-widgets.pro @@ -47,7 +47,8 @@ SOURCES += main.cpp\ components/avatar.cpp \ examples/avatarexamples.cpp \ examples/menuexamples.cpp \ - components/menu.cpp + components/menu.cpp \ + components/scrollbar.cpp HEADERS += mainwindow.h \ style.h \ @@ -88,4 +89,5 @@ HEADERS += mainwindow.h \ components/avatar.h \ examples/avatarexamples.h \ examples/menuexamples.h \ - components/menu.h + components/menu.h \ + components/scrollbar.h