17 lines
335 B
C++
17 lines
335 B
C++
// Copyright 2019-2024 The Hush developers
|
|
// Released under the GPLv3
|
|
#include "chatbubblepartner.h"
|
|
#include "ui_chatbubblepartner.h"
|
|
|
|
ChatBubblePartner::ChatBubblePartner(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::ChatBubblePartner)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
ChatBubblePartner::~ChatBubblePartner()
|
|
{
|
|
delete ui;
|
|
}
|