mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 10:22:58 -05:00
16 lines
465 B
C++
16 lines
465 B
C++
#include "empty_reading_list_widget.h"
|
|
|
|
EmptyReadingListWidget::EmptyReadingListWidget(QWidget *parent)
|
|
: EmptyContainerInfo(parent)
|
|
{
|
|
setUpDefaultLayout(true);
|
|
setPixmap(theme.emptyContainer.emptyReadingListIcon);
|
|
setText(tr("This reading list does not contain any comics yet"));
|
|
}
|
|
|
|
void EmptyReadingListWidget::applyTheme(const Theme &theme)
|
|
{
|
|
EmptyContainerInfo::applyTheme(theme);
|
|
setPixmap(theme.emptyContainer.emptyReadingListIcon);
|
|
}
|