]> Shamusworld >> Repos - architektonas/blob - src/generaltab.cpp
Whitespace changes. :-P
[architektonas] / src / generaltab.cpp
1 //
2 // generaltab.cpp: "General" tab on the settings dialog
3 //
4 // Part of the Architektonas Project
5 // (C) 2011 Underground Software
6 // See the README and GPLv3 files for licensing and warranty information
7 //
8 // JLH = James Hammons <jlhamm@acm.org>
9 //
10 // WHO  WHEN        WHAT
11 // ---  ----------  ------------------------------------------------------------
12 // JLH  06/04/2011  Created this file
13 //
14
15 #include "generaltab.h"
16
17 GeneralTab::GeneralTab(QWidget * parent/*= 0*/): QWidget(parent)
18 {
19         antialiasChk = new QCheckBox(tr("Use Qt's built-in antialiasing"));
20
21         QVBoxLayout * layout = new QVBoxLayout;
22         layout->addWidget(antialiasChk);
23         setLayout(layout);
24 }
25
26 GeneralTab::~GeneralTab()
27 {
28 }