summaryrefslogtreecommitdiffstats
path: root/src/infosidebarpage.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:35:26 -0600
committerTimothy Pearson <[email protected]>2011-12-19 11:35:26 -0600
commitb651b3b01b24418d0e6387870d9758a61d7bd9ff (patch)
tree0e1080d49470e1c5a3640569e551b7afb30b2827 /src/infosidebarpage.cpp
parent33ca3afe641f5cb46cda167f2c6700747ee0c06f (diff)
downloaddolphin-b651b3b01b24418d0e6387870d9758a61d7bd9ff.tar.gz
dolphin-b651b3b01b24418d0e6387870d9758a61d7bd9ff.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/infosidebarpage.cpp')
-rw-r--r--src/infosidebarpage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp
index 3cdc23a..f01c254 100644
--- a/src/infosidebarpage.cpp
+++ b/src/infosidebarpage.cpp
@@ -74,7 +74,7 @@ InfoSidebarPage::InfoSidebarPage(TQWidget* parent) :
// name
m_name = new TQLabel(this);
m_name->setTextFormat(TQt::RichText);
- m_name->setAlignment(m_name->tqalignment() | TQt::AlignHCenter);
+ m_name->setAlignment(m_name->alignment() | TQt::AlignHCenter);
TQFontMetrics fontMetrics(m_name->font());
m_name->setMinimumHeight(fontMetrics.height() * 3);
m_name->setSizePolicy(TQSizePolicy::MinimumExpanding, TQSizePolicy::Maximum);
@@ -406,7 +406,7 @@ void InfoSidebarPage::addInfoLine(const TQString& labelText, const TQString& inf
void InfoSidebarPage::insertActions()
{
// delete all existing action widgets
- // TODO: just use tqchildren() from TQObject...
+ // TODO: just use children() from TQObject...
TQPtrListIterator<TQWidget> deleteIter(m_actionWidgets);
TQWidget* widget = 0;
while ((widget = deleteIter.current()) != 0) {