Remove tone emoji
This commit is contained in:
parent
b60554b8fd
commit
da6b816228
4 changed files with 20 additions and 89 deletions
|
|
@ -31,7 +31,7 @@ class Category : public QWidget
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
Category(QString category, QList<Emoji> emoji, QWidget *parent = nullptr);
|
||||
Category(QString category, std::vector<Emoji> emoji, QWidget *parent = nullptr);
|
||||
~Category();
|
||||
|
||||
signals:
|
||||
|
|
|
|||
|
|
@ -17,7 +17,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <QList>
|
||||
#include <QString>
|
||||
#include <vector>
|
||||
|
||||
namespace emoji {
|
||||
|
||||
|
|
@ -32,13 +33,13 @@ struct Emoji
|
|||
class Provider
|
||||
{
|
||||
public:
|
||||
static const QList<Emoji> people;
|
||||
static const QList<Emoji> nature;
|
||||
static const QList<Emoji> food;
|
||||
static const QList<Emoji> activity;
|
||||
static const QList<Emoji> travel;
|
||||
static const QList<Emoji> objects;
|
||||
static const QList<Emoji> symbols;
|
||||
static const QList<Emoji> flags;
|
||||
static const std::vector<Emoji> people;
|
||||
static const std::vector<Emoji> nature;
|
||||
static const std::vector<Emoji> food;
|
||||
static const std::vector<Emoji> activity;
|
||||
static const std::vector<Emoji> travel;
|
||||
static const std::vector<Emoji> objects;
|
||||
static const std::vector<Emoji> symbols;
|
||||
static const std::vector<Emoji> flags;
|
||||
};
|
||||
} // namespace emoji
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue