mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
441 B
C++
23 lines
441 B
C++
|
#include "GenericListItem.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
const QSize GenericListItem::ICON_SIZE(32, 32);
|
||
|
|
||
|
GenericListItem *GenericListItem::fromVariant(const QVariant &variant)
|
||
|
{
|
||
|
// See https://stackoverflow.com/a/44503822 .
|
||
|
return static_cast<GenericListItem *>(variant.value<void *>());
|
||
|
}
|
||
|
|
||
|
GenericListItem::GenericListItem()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
GenericListItem::GenericListItem(const QIcon &icon)
|
||
|
: icon_(icon)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
} // namespace chatterino
|