~nitrokey/nitrokey/release

« back to all changes in this revision

Viewing changes to src/ui/stick20lockfirmwaredialog.cpp

  • Committer: ggkitsas
  • Date: 2015-04-06 11:29:10 UTC
  • Revision ID: git-v1:5264a39ba4fc1982a95a6380bfb5595cfecc6a2e
nsis installer script

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Author: Copyright (C) Rudolf Boeddeker  Date: 2014-06-02
3
 
 *
4
 
 * This file is part of Nitrokey 2
5
 
 *
6
 
 * Nitrokey 2  is free software: you can redistribute it and/or modify
7
 
 * it under the terms of the GNU General Public License as published by
8
 
 * the Free Software Foundation, either version 3 of the License, or
9
 
 * any later version.
10
 
 *
11
 
 * Nitrokey is distributed in the hope that it will be useful,
12
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
 
 * GNU General Public License for more details.
15
 
 *
16
 
 * You should have received a copy of the GNU General Public License
17
 
 * along with Nitrokey. If not, see <http://www.gnu.org/licenses/>.
18
 
 */
 
2
* Author: Copyright (C) Rudolf Boeddeker  Date: 2014-06-02
 
3
*
 
4
* This file is part of Nitrokey 2
 
5
*
 
6
* Nitrokey 2  is free software: you can redistribute it and/or modify
 
7
* it under the terms of the GNU General Public License as published by
 
8
* the Free Software Foundation, either version 3 of the License, or
 
9
* any later version.
 
10
*
 
11
* Nitrokey is distributed in the hope that it will be useful,
 
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
14
* GNU General Public License for more details.
 
15
*
 
16
* You should have received a copy of the GNU General Public License
 
17
* along with Nitrokey. If not, see <http://www.gnu.org/licenses/>.
 
18
*/
19
19
 
20
20
#include "stick20lockfirmwaredialog.h"
21
21
#include "ui_stick20lockfirmwaredialog.h"
22
22
 
 
23
 
23
24
/*******************************************************************************
24
25
 
25
26
 Local defines
32
33
 
33
34
*******************************************************************************/
34
35
 
 
36
 
35
37
/*******************************************************************************
36
38
 
37
39
  stick20LockFirmwareDialog
44
46
 
45
47
*******************************************************************************/
46
48
 
47
 
stick20LockFirmwareDialog::stick20LockFirmwareDialog(QWidget *parent)
48
 
    : QDialog(parent), ui(new Ui::stick20LockFirmwareDialog) {
49
 
  ui->setupUi(this);
50
 
}
51
 
 
52
 
stick20LockFirmwareDialog::~stick20LockFirmwareDialog() { delete ui; }
 
49
 
 
50
stick20LockFirmwareDialog::stick20LockFirmwareDialog(QWidget *parent) :
 
51
    QDialog(parent),
 
52
    ui(new Ui::stick20LockFirmwareDialog)
 
53
{
 
54
    ui->setupUi(this);
 
55
}
 
56
 
 
57
stick20LockFirmwareDialog::~stick20LockFirmwareDialog()
 
58
{
 
59
    delete ui;
 
60
}