File: qhimdformatdialog.cpp

package info (click to toggle)
linux-minidisc 0.9.16-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,640 kB
  • sloc: ansic: 6,389; cpp: 2,731; python: 2,537; perl: 866; sh: 207; makefile: 10
file content (25 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (5)
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;
    }
}