summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:15:09 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:15:09 -0600
commit3eb39830ef8d807ff1538a0aa66a9b3fd711903a (patch)
tree65d77d809c10190d1591e13eaa8b02042a0d4488
parente3656c08ed309001cb7275441296682cadbeb160 (diff)
downloadtde-systemsettings-3eb39830.tar.gz
tde-systemsettings-3eb39830.zip
Rename old tq methods that no longer need a unique name
-rw-r--r--systemsettings/kcscrollview.cpp4
-rw-r--r--systemsettings/kcscrollview.h2
-rw-r--r--systemsettings/mainwindow.cpp2
-rw-r--r--systemsettings/modulesview.cpp6
-rw-r--r--systemsettings/modulesview.h2
5 files changed, 8 insertions, 8 deletions
diff --git a/systemsettings/kcscrollview.cpp b/systemsettings/kcscrollview.cpp
index a543ac7..4566337 100644
--- a/systemsettings/kcscrollview.cpp
+++ b/systemsettings/kcscrollview.cpp
@@ -25,8 +25,8 @@ KCScrollView::KCScrollView( TQWidget * parent, const char * name, WFlags f) : TQ
mainChild = 0;
}
-TQSize KCScrollView::tqsizeHint() const {
- TQSize vphint = mainChild->tqsizeHint();
+TQSize KCScrollView::sizeHint() const {
+ TQSize vphint = mainChild->sizeHint();
vphint.setWidth(vphint.width()+2*frameWidth());
vphint.setHeight(vphint.height()+2*frameWidth());
return vphint;
diff --git a/systemsettings/kcscrollview.h b/systemsettings/kcscrollview.h
index dc9fbeb..e023899 100644
--- a/systemsettings/kcscrollview.h
+++ b/systemsettings/kcscrollview.h
@@ -26,7 +26,7 @@ class KCScrollView : public TQScrollView {
public:
KCScrollView ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 );
- virtual TQSize tqsizeHint() const;
+ virtual TQSize sizeHint() const;
virtual void addChild(TQWidget *child, int x=0, int y=0);
private:
TQWidget *mainChild;
diff --git a/systemsettings/mainwindow.cpp b/systemsettings/mainwindow.cpp
index 0c21736..cf2d1b5 100644
--- a/systemsettings/mainwindow.cpp
+++ b/systemsettings/mainwindow.cpp
@@ -289,7 +289,7 @@ void MainWindow::slotItemSelected( TQIconViewItem *item ){
void MainWindow::timerResize() {
TQSize currentSize = size();
- TQSize newSize = currentSize.expandedTo(tqsizeHint());
+ TQSize newSize = currentSize.expandedTo(sizeHint());
// Avoid resizing if possible.
if(newSize!=currentSize) {
resize(newSize);
diff --git a/systemsettings/modulesview.cpp b/systemsettings/modulesview.cpp
index ef920f1..ff0e0da 100644
--- a/systemsettings/modulesview.cpp
+++ b/systemsettings/modulesview.cpp
@@ -112,14 +112,14 @@ void ModulesView::createRow( const TQString &parentPath, TQBoxLayout *boxLayout
// Heaer Icon
TQLabel *icon = new TQLabel( this, "groupicon" );
icon->setPixmap( SmallIcon( group->icon() ) );
- icon->tqsetSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)1,
+ icon->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)1,
(TQSizePolicy::SizeType)5, 0, 0, icon->sizePolicy().hasHeightForWidth() ) );
rowLayout->addWidget( icon );
// Header Name
TQLabel *textLabel = new TQLabel( this, "groupcaption" );
textLabel->setText( group->caption() );
- textLabel->tqsetSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)7,
+ textLabel->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)7,
(TQSizePolicy::SizeType)5, 0, 0, textLabel->sizePolicy().hasHeightForWidth()));
TQFont textLabel_font( textLabel->font() );
textLabel_font.setBold( true );
@@ -160,7 +160,7 @@ void ModulesView::createRow( const TQString &parentPath, TQBoxLayout *boxLayout
}
// Force the height for those items that have two words.
- iconView->setMinimumHeight( iconView->tqminimumSizeHint().height() );
+ iconView->setMinimumHeight( iconView->minimumSizeHint().height() );
}
void ModulesView::clearSelection() {
diff --git a/systemsettings/modulesview.h b/systemsettings/modulesview.h
index a334d75..9eeb72a 100644
--- a/systemsettings/modulesview.h
+++ b/systemsettings/modulesview.h
@@ -34,7 +34,7 @@ public:
: KIconView( parent, name ){ };
// Figure out the hight/width to have only one row
- TQSize tqminimumSizeHint() const {
+ TQSize minimumSizeHint() const {
int width = 0;
/*
for ( TQIconViewItem *item = firstItem(); item; item = item->nextItem() )