Add stubs for qtmateriallist and qtmateriallistitem
This commit is contained in:
parent
998fb6bd89
commit
828c881fca
|
@ -45,7 +45,9 @@ SOURCES = \
|
||||||
layouts/qtmaterialsnackbarlayout.cpp \
|
layouts/qtmaterialsnackbarlayout.cpp \
|
||||||
qtmaterialautocomplete_internal.cpp \
|
qtmaterialautocomplete_internal.cpp \
|
||||||
qtmaterialmenu.cpp \
|
qtmaterialmenu.cpp \
|
||||||
qtmaterialmenu_internal.cpp
|
qtmaterialmenu_internal.cpp \
|
||||||
|
qtmateriallist.cpp \
|
||||||
|
qtmateriallistitem.cpp
|
||||||
HEADERS = \
|
HEADERS = \
|
||||||
qtmaterialavatar_p.h \
|
qtmaterialavatar_p.h \
|
||||||
qtmaterialavatar.h \
|
qtmaterialavatar.h \
|
||||||
|
@ -119,6 +121,10 @@ HEADERS = \
|
||||||
qtmaterialautocomplete_internal.h \
|
qtmaterialautocomplete_internal.h \
|
||||||
qtmaterialmenu.h \
|
qtmaterialmenu.h \
|
||||||
qtmaterialmenu_p.h \
|
qtmaterialmenu_p.h \
|
||||||
qtmaterialmenu_internal.h
|
qtmaterialmenu_internal.h \
|
||||||
|
qtmateriallist.h \
|
||||||
|
qtmateriallist_p.h \
|
||||||
|
qtmateriallistitem.h \
|
||||||
|
qtmateriallistitem_p.h
|
||||||
RESOURCES += \
|
RESOURCES += \
|
||||||
resources.qrc
|
resources.qrc
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
#include "qtmateriallist.h"
|
||||||
|
#include "qtmateriallist_p.h"
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef QTMATERIALLIST_H
|
||||||
|
#define QTMATERIALLIST_H
|
||||||
|
|
||||||
|
#endif // QTMATERIALLIST_H
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef QTMATERIALLIST_P_H
|
||||||
|
#define QTMATERIALLIST_P_H
|
||||||
|
|
||||||
|
#endif // QTMATERIALLIST_P_H
|
|
@ -0,0 +1,2 @@
|
||||||
|
#include "qtmateriallistitem.h"
|
||||||
|
#include "qtmateriallistitem_p.h"
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef QTMATERIALLISTITEM_H
|
||||||
|
#define QTMATERIALLISTITEM_H
|
||||||
|
|
||||||
|
#endif // QTMATERIALLISTITEM_H
|
|
@ -0,0 +1,4 @@
|
||||||
|
#ifndef QTMATERIALLISTITEM_P_H
|
||||||
|
#define QTMATERIALLISTITEM_P_H
|
||||||
|
|
||||||
|
#endif // QTMATERIALLISTITEM_P_H
|
Loading…
Reference in New Issue