squawk/ui/omemo/omemodevices.cpp

16 lines
366 B
C++
Raw Normal View History

2021-05-12 07:05:17 +00:00
/*
* Created by victoria on 2021-05-12.
*/
#include "omemodevices.h"
#include "ui_omemodevices.h"
2021-07-22 17:45:39 +00:00
OMEMODevices::OMEMODevices(QString jid, QWidget *parent)
: QDialog(parent), jid(std::move(jid)), m_ui(new Ui::OMEMODevices()) {
2021-05-15 09:28:43 +00:00
m_ui->setupUi(this);
2021-07-22 17:45:39 +00:00
setWindowTitle(QString("%1's OMEMO devices").arg(this->jid));
2021-05-12 07:05:17 +00:00
}
OMEMODevices::~OMEMODevices() {}