diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:12 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:12 -0600 |
commit | 6b45a7b7b2a804ccb2d522eb9ba6423fedb59b8f (patch) | |
tree | a08b27e3f4fde1ed82a5f061a2725998e8012f93 /atlantikdesigner/designer/group.cpp | |
parent | ca82971624269719d487c6f7980d7237f9420036 (diff) | |
download | tdeaddons-6b45a7b7b2a804ccb2d522eb9ba6423fedb59b8f.tar.gz tdeaddons-6b45a7b7b2a804ccb2d522eb9ba6423fedb59b8f.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit ca82971624269719d487c6f7980d7237f9420036.
Diffstat (limited to 'atlantikdesigner/designer/group.cpp')
-rw-r--r-- | atlantikdesigner/designer/group.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/atlantikdesigner/designer/group.cpp b/atlantikdesigner/designer/group.cpp index 3ba8a86..b3da81f 100644 --- a/atlantikdesigner/designer/group.cpp +++ b/atlantikdesigner/designer/group.cpp @@ -2,7 +2,7 @@ #include <tqframe.h> #include <tqvgroupbox.h> #include <tqlabel.h> -#include <layout.h> +#include <tqlayout.h> #include <tqspinbox.h> #include <tqstring.h> #include <tqstringlist.h> @@ -26,10 +26,10 @@ GroupEditor::GroupEditor(ConfigEstateGroupList *newList, TQWidget *parent) list = newList; TQFrame *page = plainPage(); - TQHBoxLayout *hlayout = new TQHBoxLayout(page, marginHint(), spacingHint()); + TQHBoxLayout *htqlayout = new TQHBoxLayout(page, marginHint(), spacingHint()); groups = new KListBox(page); - hlayout->addWidget(groups); + htqlayout->addWidget(groups); connect(groups, TQT_SIGNAL(highlighted(TQListBoxItem *)), this, TQT_SLOT(updateSettings(TQListBoxItem *))); TQStringList newgroups; for (ConfigEstateGroupList::Iterator it = list->begin(); it != list->end(); ++it) @@ -37,22 +37,22 @@ GroupEditor::GroupEditor(ConfigEstateGroupList *newList, TQWidget *parent) groups->insertStringList(newgroups); connect(groups, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(selectionChanged())); - TQVBoxLayout *vlayout = new TQVBoxLayout(hlayout, spacingHint()); - colorGroupBox = new TQVGroupBox(i18n("&Colors"), page); - vlayout->addWidget(colorGroupBox); + TQVBoxLayout *vtqlayout = new TQVBoxLayout(htqlayout, spacingHint()); + tqcolorGroupBox = new TQVGroupBox(i18n("&Colors"), page); + vtqlayout->addWidget(tqcolorGroupBox); - (void) new TQLabel(i18n("Foreground:"), colorGroupBox); - fgButton = new KColorButton(colorGroupBox, "Foreground Button"); + (void) new TQLabel(i18n("Foreground:"), tqcolorGroupBox); + fgButton = new KColorButton(tqcolorGroupBox, "Foreground Button"); connect(fgButton, TQT_SIGNAL(changed(const TQColor &)), this, TQT_SLOT(fgChanged(const TQColor &))); connect(fgButton, TQT_SIGNAL(changed(const TQColor &)), this, TQT_SIGNAL(changed())); - (void) new TQLabel(i18n("Background:"), colorGroupBox); - bgButton = new KColorButton(colorGroupBox, "Background Button"); + (void) new TQLabel(i18n("Background:"), tqcolorGroupBox); + bgButton = new KColorButton(tqcolorGroupBox, "Background Button"); connect(bgButton, TQT_SIGNAL(changed(const TQColor &)), this, TQT_SLOT(bgChanged(const TQColor &))); connect(bgButton, TQT_SIGNAL(changed(const TQColor &)), this, TQT_SIGNAL(changed())); pricesGroupBox = new TQVGroupBox(i18n("&Prices"), page); - vlayout->addWidget(pricesGroupBox); + vtqlayout->addWidget(pricesGroupBox); pricesWidget = new TQWidget(pricesGroupBox); TQGridLayout *pricesLayout = new TQGridLayout(pricesWidget, 2, 2, 0, spacingHint()); @@ -69,7 +69,7 @@ GroupEditor::GroupEditor(ConfigEstateGroupList *newList, TQWidget *parent) connect(globalPrice, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(globalPriceChanged(int))); dynamicGroupBox = new TQVGroupBox(i18n("&Dynamic Rent"), page); - vlayout->addWidget(dynamicGroupBox); + vtqlayout->addWidget(dynamicGroupBox); mathWidget = new TQWidget(dynamicGroupBox); TQGridLayout *mathLayout = new TQGridLayout(mathWidget, 2, 2, 0, spacingHint()); @@ -89,13 +89,13 @@ GroupEditor::GroupEditor(ConfigEstateGroupList *newList, TQWidget *parent) connect(rentVarCombo, TQT_SIGNAL(activated(const TQString &)), rentMathEdit, TQT_SLOT(insert(const TQString &))); mathLayout->addWidget(rentMathEdit, 1, 1); - TQHBoxLayout *buttonlayout = new TQHBoxLayout(vlayout, spacingHint()); + TQHBoxLayout *buttontqlayout = new TQHBoxLayout(vtqlayout, spacingHint()); KPushButton *addB = new KPushButton(i18n("&Add..."), page); - buttonlayout->addWidget(addB); + buttontqlayout->addWidget(addB); connect(addB, TQT_SIGNAL(clicked()), this, TQT_SLOT(add())); removeB = new KPushButton(i18n("&Remove"), page); - buttonlayout->addWidget(removeB); + buttontqlayout->addWidget(removeB); connect(removeB, TQT_SIGNAL(clicked()), this, TQT_SLOT(remove())); selectionChanged(); @@ -233,7 +233,7 @@ void GroupEditor::slotOk() void GroupEditor::selectionChanged() { bool issel = groups->currentItem() >= 0; - colorGroupBox->setEnabled(issel); + tqcolorGroupBox->setEnabled(issel); pricesGroupBox->setEnabled(issel); dynamicGroupBox->setEnabled(issel); removeB->setEnabled(issel); |