summaryrefslogtreecommitdiffstats
path: root/src/ksvnwidgets/depthselector.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:34:08 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:34:08 -0600
commitbb7be2361770a435b3e2e8ae2ac4250bf9810bb4 (patch)
tree3dc3697661e497b5486191491da2ed4cc751b7fc /src/ksvnwidgets/depthselector.cpp
parent40e169496670c40004f7386a23f7c03d9aeac3e0 (diff)
downloadtdesvn-bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.tar.gz
tdesvn-bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/ksvnwidgets/depthselector.cpp')
-rw-r--r--src/ksvnwidgets/depthselector.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ksvnwidgets/depthselector.cpp b/src/ksvnwidgets/depthselector.cpp
index 6e9bb74..4d1675b 100644
--- a/src/ksvnwidgets/depthselector.cpp
+++ b/src/ksvnwidgets/depthselector.cpp
@@ -24,7 +24,7 @@
#include <tqbuttongroup.h>
#include <tqcheckbox.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <tqcombobox.h>
@@ -42,11 +42,11 @@ DepthSelector::DepthSelector(TQWidget *parent, const char *name)
m_recurse->setChecked( TRUE );
m_recurse->setText(i18n( "Recursive" ));
DepthFormLayout->addWidget( m_recurse );
- m_recurse->tqsetSizePolicy(TQSizePolicy::Fixed,TQSizePolicy::Fixed);
+ m_recurse->setSizePolicy(TQSizePolicy::Fixed,TQSizePolicy::Fixed);
DepthFormLayout->addItem(m_leftspacer);
}
DepthFormLayout->setMargin(0);
- setMinimumSize(tqminimumSizeHint());
+ setMinimumSize(minimumSizeHint());
adjustSize();
}
@@ -56,11 +56,11 @@ DepthSelector::~DepthSelector()
void DepthSelector::addItemWidget(TQWidget*aWidget)
{
DepthFormLayout->removeItem(m_leftspacer);
- aWidget->reparent(this,tqgeometry().topLeft());
+ aWidget->reparent(this,geometry().topLeft());
DepthFormLayout->addWidget(aWidget);
- aWidget->tqsetSizePolicy(TQSizePolicy::Fixed,TQSizePolicy::Fixed);
+ aWidget->setSizePolicy(TQSizePolicy::Fixed,TQSizePolicy::Fixed);
DepthFormLayout->addItem(m_leftspacer);
- setMinimumSize(tqminimumSizeHint());
+ setMinimumSize(minimumSizeHint());
}
/*!