X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fsettingsdialog.cpp;h=442fba8c6e5da60651eff1ae857d4fa761a986f7;hb=60565e2216e2d6d8d3634d0614823a117770e47f;hp=94c61abd3ae4f99255ffec2da4131466e2fb1003;hpb=344e2456de66d38ce7afb86604e0fa714fa95006;p=architektonas diff --git a/src/settingsdialog.cpp b/src/settingsdialog.cpp index 94c61ab..442fba8 100644 --- a/src/settingsdialog.cpp +++ b/src/settingsdialog.cpp @@ -5,13 +5,14 @@ // (C) 2011 Underground Software // See the README and GPLv3 files for licensing and warranty information // -// JLH = James L. Hammons +// JLH = James Hammons // // WHO WHEN WHAT // --- ---------- ------------------------------------------------------------ // JLH 06/04/2011 Created this file #include "settingsdialog.h" +#include "baseunittab.h" #include "generaltab.h" @@ -19,7 +20,9 @@ SettingsDialog::SettingsDialog(QWidget * parent/*= 0*/): QDialog(parent) { tabWidget = new QTabWidget; generalTab = new GeneralTab(this); + baseunitTab = new BaseUnitTab(this); tabWidget->addTab(generalTab, tr("General")); + tabWidget->addTab(baseunitTab, tr("Base Unit")); // tabWidget->addTab(new PermissionsTab(fileInfo), tr("Permissions")); // tabWidget->addTab(new ApplicationsTab(fileInfo), tr("Applications")); @@ -36,6 +39,8 @@ SettingsDialog::SettingsDialog(QWidget * parent/*= 0*/): QDialog(parent) setWindowTitle(tr("Architektonas Settings")); } + SettingsDialog::~SettingsDialog() { } +