diff options
Diffstat (limited to 'kicker/applets/systemtray/systemtrayapplet.cpp')
| -rw-r--r-- | kicker/applets/systemtray/systemtrayapplet.cpp | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/kicker/applets/systemtray/systemtrayapplet.cpp b/kicker/applets/systemtray/systemtrayapplet.cpp index 570db2f92..3303135b3 100644 --- a/kicker/applets/systemtray/systemtrayapplet.cpp +++ b/kicker/applets/systemtray/systemtrayapplet.cpp @@ -388,7 +388,7 @@ void SystemTrayApplet::checkAutoRetract()          return;      } -    if (!tqgeometry().contains(mapFromGlobal(TQCursor::pos()))) +    if (!geometry().contains(mapFromGlobal(TQCursor::pos())))      {          m_autoRetractTimer->stop();          if (m_autoRetract) @@ -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(); | 
