mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
19 lines
329 B
C++
19 lines
329 B
C++
|
#include "emotepopup.h"
|
||
|
namespace chatterino {
|
||
|
namespace widgets {
|
||
|
|
||
|
EmotePopup::EmotePopup(QWidget *parent)
|
||
|
: QWidget(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void EmotePopup::loadChannel(std::shared_ptr<Channel> channel)
|
||
|
{
|
||
|
// channel->bttvChannelEmotes.each([](const QString &key, const EmoteData &value) {
|
||
|
|
||
|
// //
|
||
|
// });
|
||
|
}
|
||
|
}
|
||
|
}
|