mirror-chatterino2/src/widgets/emotepopup.cpp

19 lines
329 B
C++
Raw Normal View History

2017-09-15 17:23:49 +02:00
#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) {
// //
// });
}
}
}