summaryrefslogtreecommitdiffstats
path: root/kicker/applets/systemtray/systemtrayapplet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kicker/applets/systemtray/systemtrayapplet.cpp')
-rw-r--r--kicker/applets/systemtray/systemtrayapplet.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kicker/applets/systemtray/systemtrayapplet.cpp b/kicker/applets/systemtray/systemtrayapplet.cpp
index 570db2f92..fcc55234a 100644
--- a/kicker/applets/systemtray/systemtrayapplet.cpp
+++ b/kicker/applets/systemtray/systemtrayapplet.cpp
@@ -427,12 +427,12 @@ void SystemTrayApplet::showExpandButton(bool show)
if (orientation() == Qt::Vertical)
{
m_expandButton->setFixedSize(width() - 4,
- m_expandButton->tqsizeHint()
+ m_expandButton->sizeHint()
.height());
}
else
{
- m_expandButton->setFixedSize(m_expandButton->tqsizeHint()
+ m_expandButton->setFixedSize(m_expandButton->sizeHint()
.width(),
height() - 4);
}
@@ -869,7 +869,7 @@ int SystemTrayApplet::widthForHeight(int h) const
me->setFixedHeight(h);
}
- return tqsizeHint().width();
+ return sizeHint().width();
}
int SystemTrayApplet::heightForWidth(int w) const
@@ -888,7 +888,7 @@ int SystemTrayApplet::heightForWidth(int w) const
me->setFixedWidth(w);
}
- return tqsizeHint().height();
+ return sizeHint().height();
}
void SystemTrayApplet::moveEvent( TQMoveEvent* )
@@ -906,7 +906,7 @@ void SystemTrayApplet::resizeEvent( TQResizeEvent* )
void SystemTrayApplet::layoutTray()
{
- tqsetUpdatesEnabled(false);
+ setUpdatesEnabled(false);
int iconCount = m_shownWins.count();
@@ -927,11 +927,11 @@ void SystemTrayApplet::layoutTray()
{
if (orientation() == Qt::Vertical)
{
- m_expandButton->setFixedSize(width() - 4, m_expandButton->tqsizeHint().height());
+ m_expandButton->setFixedSize(width() - 4, m_expandButton->sizeHint().height());
}
else
{
- m_expandButton->setFixedSize(m_expandButton->tqsizeHint().width(), height() - 4);
+ m_expandButton->setFixedSize(m_expandButton->sizeHint().width(), height() - 4);
}
}
@@ -1102,7 +1102,7 @@ void SystemTrayApplet::layoutTray()
}
}
- tqsetUpdatesEnabled(true);
+ setUpdatesEnabled(true);
updateGeometry();
setBackground();
@@ -1138,7 +1138,7 @@ TrayEmbed::TrayEmbed( bool kdeTray, TQWidget* parent )
void TrayEmbed::getIconSize(int defaultIconSize)
{
- TQSize minSize = tqminimumSizeHint();
+ TQSize minSize = minimumSizeHint();
int width = minSize.width();
int height = minSize.height();