diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:05:13 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:05:13 -0600 |
commit | 21e2875d3b095c6ad6aa82a4f385d66cba3728c3 (patch) | |
tree | 0ae9b15b3e041d43d538e1b092a97b4a25037329 /src/knutprefdlg.cpp | |
parent | e1cddce9af7ab2eeaa5613e91e6899128b1ce5ab (diff) | |
download | knutclient-21e2875d3b095c6ad6aa82a4f385d66cba3728c3.tar.gz knutclient-21e2875d3b095c6ad6aa82a4f385d66cba3728c3.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/knutprefdlg.cpp')
-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 ); |