diff options
Diffstat (limited to 'kdesktop/minicli.cpp')
| -rw-r--r-- | kdesktop/minicli.cpp | 48 | 
1 files changed, 24 insertions, 24 deletions
| diff --git a/kdesktop/minicli.cpp b/kdesktop/minicli.cpp index c036a4306..027aa0bfc 100644 --- a/kdesktop/minicli.cpp +++ b/kdesktop/minicli.cpp @@ -89,7 +89,7 @@ Minicli::Minicli( TQWidget *parent, const char *name)    mainLayout->addWidget(m_dlg);    m_dlg->lbRunIcon->setPixmap(DesktopIcon("kmenu")); -  m_dlg->lbComment->tqsetAlignment( Qt::WordBreak ); +  m_dlg->lbComment->setAlignment( Qt::WordBreak );    m_dlg->cbCommand->setDuplicatesEnabled( false );    m_dlg->cbCommand->setTrapReturnKey( true ); @@ -179,9 +179,9 @@ void Minicli::setCommand(const TQString& command)    }  } -TQSize Minicli::tqsizeHint() const +TQSize Minicli::sizeHint() const  { -  int maxWidth = tqApp->desktop()->screenGeometry((TQWidget*)this).width(); +  int maxWidth = qApp->desktop()->screenGeometry((TQWidget*)this).width();    if (maxWidth < 603)    {      // a sensible max for smaller screens @@ -389,7 +389,7 @@ TQString Minicli::terminalCommand (const TQString& cmd, const TQString& args)    else      terminal += TQString(" -e /bin/sh -c \"%1 %2\"").arg(cmd).arg(args); -  if (!m_terminalAppList.tqcontains(cmd)) +  if (!m_terminalAppList.contains(cmd))      m_terminalAppList << cmd;    return terminal; @@ -414,13 +414,13 @@ int Minicli::runCommand()      cmd = uri.url();    TQCString asn; -  if( tqApp->desktop()->isVirtualDesktop()) +  if( qApp->desktop()->isVirtualDesktop())    {      asn = KStartupInfo::createNewStartupId();      KStartupInfoId id;      id.initId( asn );      KStartupInfoData data; -    data.setXinerama( tqApp->desktop()->screenNumber( this )); +    data.setXinerama( qApp->desktop()->screenNumber( this ));      KStartupInfo::sendChange( id, data );    } @@ -558,7 +558,7 @@ int Minicli::runCommand()          case KURIFilterData::HELP:          {            // No need for kfmclient, KRun does it all (David) -          (void) new KRun( m_filterData->uri(), tqparentWidget(), asn ); +          (void) new KRun( m_filterData->uri(), parentWidget(), asn );            return 0;          }          case KURIFilterData::EXECUTABLE: @@ -570,7 +570,7 @@ int Minicli::runCommand()              if (service && service->isValid() && service->type() == "Application")              {                notifyServiceStarted(service); -              KRun::run(*service, KURL::List(), tqparentWidget(), asn ); +              KRun::run(*service, KURL::List(), parentWidget(), asn );                return 0;              }            } @@ -605,7 +605,7 @@ int Minicli::runCommand()            if (service && service->isValid() && service->type() == "Application")            {              notifyServiceStarted(service); -            KRun::run(*service, KURL::List(), tqparentWidget(), asn ); +            KRun::run(*service, KURL::List(), parentWidget(), asn );              return 0;            } @@ -613,7 +613,7 @@ int Minicli::runCommand()            if (service && service->isValid() && service->type() == "Application")            {              notifyServiceStarted(service); -            KRun::run(*service, KURL::List(), tqparentWidget(), asn ); +            KRun::run(*service, KURL::List(), parentWidget(), asn );              return 0;            } @@ -625,7 +625,7 @@ int Minicli::runCommand()        }      } -    if ( KRun::runCommand( cmd, exec, m_iconName, tqparentWidget(), asn ) ) +    if ( KRun::runCommand( cmd, exec, m_iconName, parentWidget(), asn ) )        return 0;      else      { @@ -674,7 +674,7 @@ void Minicli::slotCmdChanged(const TQString& text)      // Also use autocompletion if it appears that I am using some kind of ioslave, except the http:// ioslave      m_urlCompletionStarted = true; // flag for slotMatch() -    if ((text.startsWith( "/" ) || text.startsWith( "~" ) || (text.tqcontains("://", false) != 0)) && (text.tqcontains("http://", false) == 0)) { +    if ((text.startsWith( "/" ) || text.startsWith( "~" ) || (text.contains("://", false) != 0)) && (text.contains("http://", false) == 0)) {          TQString completion = m_pURLCompletion->makeCompletion( text );      }    } @@ -730,7 +730,7 @@ void Minicli::slotAdvanced()      // Set the focus back to the widget that had it to begin with, i.e.      // do not put the focus on the "Options" button. -    m_FocusWidget = tqfocusWidget(); +    m_FocusWidget = focusWidget();      if( m_FocusWidget )        m_FocusWidget->setFocus(); @@ -763,7 +763,7 @@ void Minicli::parseLine( bool final )      KURIFilter::self()->filterURI( *(m_filterData), m_middleFilters );    bool isTerminalApp = ((m_filterData->uriType() == KURIFilterData::EXECUTABLE) && -                        m_terminalAppList.tqcontains(m_filterData->uri().url())); +                        m_terminalAppList.contains(m_filterData->uri().url()));    if( !isTerminalApp )    { @@ -792,7 +792,7 @@ void Minicli::parseLine( bool final )  void Minicli::setIcon ()  {    if( m_iconName.isEmpty() || m_iconName == "unknown" || m_iconName == "kde" ) -    m_iconName = TQString::tqfromLatin1("kmenu"); +    m_iconName = TQString::fromLatin1("kmenu");    TQPixmap icon = DesktopIcon( m_iconName ); @@ -806,14 +806,14 @@ void Minicli::setIcon ()      {        int x = icon.width() - overlay.width();        int y = icon.height() - overlay.height(); -      if ( icon.tqmask() ) +      if ( icon.mask() )        { -        TQBitmap tqmask = *icon.tqmask(); -        bitBlt( &tqmask, x, y, -                overlay.tqmask() ? const_cast<TQBitmap *>(overlay.tqmask()) : &overlay, +        TQBitmap mask = *icon.mask(); +        bitBlt( &mask, x, y, +                overlay.mask() ? const_cast<TQBitmap *>(overlay.mask()) : &overlay,                  0, 0, overlay.width(), overlay.height(), -                overlay.tqmask() ? OrROP : SetROP ); -        icon.setMask(tqmask); +                overlay.mask() ? OrROP : SetROP ); +        icon.setMask(mask);        }        bitBlt( &icon, x, y, &overlay );      } @@ -837,9 +837,9 @@ void Minicli::updateAuthLabel()        m_prevChecked = m_dlg->cbRunAsOther->isChecked();        m_prevCached = true;      } -    if (m_dlg->leUsername->text() != TQString::tqfromLatin1("root")) +    if (m_dlg->leUsername->text() != TQString::fromLatin1("root"))        m_dlg->lePassword->setText(TQString::null); -    m_dlg->leUsername->setText(TQString::tqfromLatin1("root")); +    m_dlg->leUsername->setText(TQString::fromLatin1("root"));      m_dlg->cbRunAsOther->setChecked(true);      m_dlg->cbRunAsOther->setEnabled(false);      m_dlg->leUsername->setEnabled(false); @@ -884,7 +884,7 @@ void Minicli::slotTerminal(bool enable)    if (enable)    {      m_prevIconName = m_iconName; -    m_iconName = TQString::tqfromLatin1( "konsole" ); +    m_iconName = TQString::fromLatin1( "konsole" );      setIcon();    }    else if (!m_prevIconName.isEmpty()) | 
