10 lines
159 B
C++
10 lines
159 B
C++
|
|
#include "NotificationListWidget.h"
|
|||
|
|
#include <QListView>
|
|||
|
|
|
|||
|
|
|
|||
|
|
NotificationListWidget::NotificationListWidget()
|
|||
|
|
: m_notificationList(new QListView(this))
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|