mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
14 lines
196 B
C++
14 lines
196 B
C++
|
#include "androidgui.h"
|
||
|
#include <QLabel>
|
||
|
|
||
|
AndroidGUI::AndroidGUI(QWidget *parent) :
|
||
|
QWidget(parent)
|
||
|
{
|
||
|
l = new QLabel("qTox Android", this);
|
||
|
}
|
||
|
|
||
|
AndroidGUI::~AndroidGUI()
|
||
|
{
|
||
|
delete l;
|
||
|
}
|