diff options
author | Timothy Pearson <[email protected]> | 2011-12-21 14:05:13 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-26 03:00:03 +0200 |
commit | 7bc712363f0ee85526bd575e32891a27ecf605fc (patch) | |
tree | 4a764ca1414b5eb4ea3f082d842b26b1de1ae808 | |
parent | fb2f339e32fc4e8c4458e5423646e866ab2461b3 (diff) | |
download | knutclient-7bc712363f0ee85526bd575e32891a27ecf605fc.tar.gz knutclient-7bc712363f0ee85526bd575e32891a27ecf605fc.zip |
Rename obsolete tq methods to standard names
(cherry picked from commit 21e2875d3b095c6ad6aa82a4f385d66cba3728c3)
-rw-r--r-- | src/knutprefdlg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/knutprefdlg.cpp b/src/knutprefdlg.cpp index ce88da1..1d7ee48 100644 --- a/src/knutprefdlg.cpp +++ b/src/knutprefdlg.cpp @@ -637,9 +637,9 @@ void KNutPrefDlg::initUps () { // sets listbox for (int i=0; i < m_myUpsData->getCount (); i++) m_listBox2->insertItem (m_myUpsData->getName(i)); - //includes listbox into horizontal tqlayout on the first place + //includes listbox into horizontal layout on the first place upsTopLayout->addWidget( m_listBox2, 20 ); - // makes vertical tqlayout and includes it in horizontal tqlayout into the second place + // makes vertical layout and includes it in horizontal layout into the second place TQVBoxLayout *upsLayout = new TQVBoxLayout( upsTopLayout, spacingHint (),"upsLayout" ); // vytvorime tlacitka @@ -647,7 +647,7 @@ void KNutPrefDlg::initUps () { KPushButton *editButton = new KPushButton (i18n("&Edit"),page); KPushButton *deleteButton = new KPushButton (i18n("&Delete"),page); - // includes buttons into tqlayout / vlozime tlacitka do layoutu + // includes buttons into layout / vlozime tlacitka do layoutu upsLayout->addWidget( newButton ); upsLayout->addWidget( editButton ); upsLayout->addWidget( deleteButton ); |