From 828c881fca6eb8eb930eeca3e18098eb9a31cdf9 Mon Sep 17 00:00:00 2001 From: Johannes Hilden Date: Fri, 27 Oct 2017 16:51:12 +0300 Subject: [PATCH] Add stubs for qtmateriallist and qtmateriallistitem --- components/components.pro | 10 ++++++++-- components/qtmateriallist.cpp | 2 ++ components/qtmateriallist.h | 4 ++++ components/qtmateriallist_p.h | 4 ++++ components/qtmateriallistitem.cpp | 2 ++ components/qtmateriallistitem.h | 4 ++++ components/qtmateriallistitem_p.h | 4 ++++ 7 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 components/qtmateriallist.cpp create mode 100644 components/qtmateriallist.h create mode 100644 components/qtmateriallist_p.h create mode 100644 components/qtmateriallistitem.cpp create mode 100644 components/qtmateriallistitem.h create mode 100644 components/qtmateriallistitem_p.h diff --git a/components/components.pro b/components/components.pro index ccef597..d6080d5 100644 --- a/components/components.pro +++ b/components/components.pro @@ -45,7 +45,9 @@ SOURCES = \ layouts/qtmaterialsnackbarlayout.cpp \ qtmaterialautocomplete_internal.cpp \ qtmaterialmenu.cpp \ - qtmaterialmenu_internal.cpp + qtmaterialmenu_internal.cpp \ + qtmateriallist.cpp \ + qtmateriallistitem.cpp HEADERS = \ qtmaterialavatar_p.h \ qtmaterialavatar.h \ @@ -119,6 +121,10 @@ HEADERS = \ qtmaterialautocomplete_internal.h \ qtmaterialmenu.h \ qtmaterialmenu_p.h \ - qtmaterialmenu_internal.h + qtmaterialmenu_internal.h \ + qtmateriallist.h \ + qtmateriallist_p.h \ + qtmateriallistitem.h \ + qtmateriallistitem_p.h RESOURCES += \ resources.qrc diff --git a/components/qtmateriallist.cpp b/components/qtmateriallist.cpp new file mode 100644 index 0000000..e6b1aee --- /dev/null +++ b/components/qtmateriallist.cpp @@ -0,0 +1,2 @@ +#include "qtmateriallist.h" +#include "qtmateriallist_p.h" diff --git a/components/qtmateriallist.h b/components/qtmateriallist.h new file mode 100644 index 0000000..7ace66a --- /dev/null +++ b/components/qtmateriallist.h @@ -0,0 +1,4 @@ +#ifndef QTMATERIALLIST_H +#define QTMATERIALLIST_H + +#endif // QTMATERIALLIST_H diff --git a/components/qtmateriallist_p.h b/components/qtmateriallist_p.h new file mode 100644 index 0000000..c92b2d6 --- /dev/null +++ b/components/qtmateriallist_p.h @@ -0,0 +1,4 @@ +#ifndef QTMATERIALLIST_P_H +#define QTMATERIALLIST_P_H + +#endif // QTMATERIALLIST_P_H diff --git a/components/qtmateriallistitem.cpp b/components/qtmateriallistitem.cpp new file mode 100644 index 0000000..67a7cd8 --- /dev/null +++ b/components/qtmateriallistitem.cpp @@ -0,0 +1,2 @@ +#include "qtmateriallistitem.h" +#include "qtmateriallistitem_p.h" diff --git a/components/qtmateriallistitem.h b/components/qtmateriallistitem.h new file mode 100644 index 0000000..9abc65b --- /dev/null +++ b/components/qtmateriallistitem.h @@ -0,0 +1,4 @@ +#ifndef QTMATERIALLISTITEM_H +#define QTMATERIALLISTITEM_H + +#endif // QTMATERIALLISTITEM_H diff --git a/components/qtmateriallistitem_p.h b/components/qtmateriallistitem_p.h new file mode 100644 index 0000000..fb7ebd4 --- /dev/null +++ b/components/qtmateriallistitem_p.h @@ -0,0 +1,4 @@ +#ifndef QTMATERIALLISTITEM_P_H +#define QTMATERIALLISTITEM_P_H + +#endif // QTMATERIALLISTITEM_P_H