mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-11-15 19:48:02 +01:00
37 lines
1 KiB
C++
37 lines
1 KiB
C++
/*
|
||
* QtHP Connect: hand-helds support interface.
|
||
* Copyright (C) 2019 Ian Gebbie
|
||
* Code patterns and snippets borrowed from libhpcalcs :
|
||
* Copyright (C) 1999-2009 Romain Li<4C>vin
|
||
* Copyright (C) 2009-2013 Lionel Debroux
|
||
* Copyright (C) 1999-2013 libti* contributors.
|
||
*
|
||
* This program is free software; you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation; either version 3 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
*/
|
||
|
||
|
||
#include "variableview.h"
|
||
#include "ui_variableview.h"
|
||
#include <QDebug>
|
||
|
||
variableView::variableView(QWidget *)
|
||
|
||
{
|
||
ui->setupUi(this);
|
||
setAttribute(Qt::WA_DeleteOnClose);
|
||
}
|
||
|
||
variableView::~variableView()
|
||
{
|
||
qDebug()<<"delete variableView";
|
||
delete ui;
|
||
}
|