diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:28:11 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:28:11 -0600 |
commit | b88830e9111dc4375bc1461c3f7b3e7b3e73f733 (patch) | |
tree | e34a67443df8a12d634aa419364d0698b53c1451 /noatun-plugins/dub | |
parent | 6b45a7b7b2a804ccb2d522eb9ba6423fedb59b8f (diff) | |
download | tdeaddons-b88830e9111dc4375bc1461c3f7b3e7b3e73f733.tar.gz tdeaddons-b88830e9111dc4375bc1461c3f7b3e7b3e73f733.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'noatun-plugins/dub')
-rw-r--r-- | noatun-plugins/dub/dub/fileselectorwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noatun-plugins/dub/dub/fileselectorwidget.cpp b/noatun-plugins/dub/dub/fileselectorwidget.cpp index c6d7d18..ae5c5d3 100644 --- a/noatun-plugins/dub/dub/fileselectorwidget.cpp +++ b/noatun-plugins/dub/dub/fileselectorwidget.cpp @@ -66,7 +66,7 @@ FileSelectorWidget::FileSelectorWidget(TQWidget *parent) hlow->setMaximumHeight(up->height()); cmbPath = new KURLComboBox( KURLComboBox::Directories, true, this, "path combo" ); - cmbPath->tqsetSizePolicy( TQSizePolicy( TQSizePolicy::Expanding, TQSizePolicy::Fixed )); + cmbPath->setSizePolicy( TQSizePolicy( TQSizePolicy::Expanding, TQSizePolicy::Fixed )); KURLCompletion* cmpl = new KURLCompletion(); cmbPath->setCompletionObject( cmpl ); lo->addWidget(cmbPath); @@ -80,7 +80,7 @@ FileSelectorWidget::FileSelectorWidget(TQWidget *parent) filterIcon = new TQLabel(filterBox); filterIcon->setPixmap( BarIcon("filter") ); filter = new KHistoryCombo(filterBox, "filter"); - filter->tqsetSizePolicy( TQSizePolicy( TQSizePolicy::Expanding, TQSizePolicy::Fixed )); + filter->setSizePolicy( TQSizePolicy( TQSizePolicy::Expanding, TQSizePolicy::Fixed )); filterBox->setStretchFactor(filter, 2); lo->addWidget(filterBox); |