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