File: qhimdformatdialog.cpp

package info (click to toggle)
linux-minidisc 0.9.14-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,640 kB
  • ctags: 1,572
  • sloc: ansic: 6,357; cpp: 2,708; python: 2,451; perl: 866; sh: 136; makefile: 8
file content (25 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "qhimdformatdialog.h"
#include "ui_qhimdformatdialog.h"

QHiMDFormatDialog::QHiMDFormatDialog(QWidget *parent) :
    QDialog(parent),
    m_ui(new Ui::QHiMDFormatDialog)
{
    m_ui->setupUi(this);
}

QHiMDFormatDialog::~QHiMDFormatDialog()
{
    delete m_ui;
}

void QHiMDFormatDialog::changeEvent(QEvent *e)
{
    switch (e->type()) {
    case QEvent::LanguageChange:
        m_ui->retranslateUi(this);
        break;
    default:
        break;
    }
}