diff options
| author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 | 
|---|---|---|
| committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 | 
| commit | fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf (patch) | |
| tree | 9eda848e56fcb862fdfdf479adeccd95b6fe387a /kdialog/kdialog.cpp | |
| parent | 02f67d0e1355b79b1806746efb0f2f640e57f13d (diff) | |
| download | tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.tar.gz tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.zip | |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1212480 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdialog/kdialog.cpp')
| -rw-r--r-- | kdialog/kdialog.cpp | 50 | 
1 files changed, 25 insertions, 25 deletions
| diff --git a/kdialog/kdialog.cpp b/kdialog/kdialog.cpp index 297822e96..8cf9b581f 100644 --- a/kdialog/kdialog.cpp +++ b/kdialog/kdialog.cpp @@ -108,10 +108,10 @@ class WinIdEmbedder: public QObject  {  public:      WinIdEmbedder(bool printID, WId winId): -        TQObject(tqApp), print(printID), id(winId) +        TQObject(qApp), print(printID), id(winId)      { -        if (tqApp) -            tqApp->installEventFilter(this); +        if (qApp) +            qApp->installEventFilter(this);      }  protected:      bool eventFilter(TQObject *o, TQEvent *e); @@ -241,9 +241,9 @@ static int directCommand(KCmdLineArgs *args)          TQString text = TQString::fromLocal8Bit(args->getOption( option ));          int pos; -        while ((pos = text.find( TQString::tqfromLatin1("\\n") )) >= 0) +        while ((pos = text.find( TQString::fromLatin1("\\n") )) >= 0)          { -            text.tqreplace(pos, 2, TQString::tqfromLatin1("\n")); +            text.replace(pos, 2, TQString::fromLatin1("\n"));          }          if ( type == KMessageBox::WarningContinueCancel ) { @@ -491,7 +491,7 @@ static int directCommand(KCmdLineArgs *args)          if (args->count() >= 1)  {              filter = TQString::fromLocal8Bit(args->arg(0));          } -	// copied from KFileDialog::getSaveFileName(), so we can add tqgeometry +	// copied from KFileDialog::getSaveFileName(), so we can add geometry  	bool specialDir = ( startDir.at(0) == ':' );  	KFileDialog dlg( specialDir ? startDir : TQString::null, filter, 0, "filedialog", true );  	if ( !specialDir ) @@ -597,44 +597,44 @@ static int directCommand(KCmdLineArgs *args)              contextStr = TQString::fromLocal8Bit(args->arg(0));          }          KIcon::Group group = KIcon::NoGroup; -        if ( groupStr == TQString::tqfromLatin1( "Desktop" ) ) +        if ( groupStr == TQString::fromLatin1( "Desktop" ) )              group = KIcon::Desktop; -        else if ( groupStr == TQString::tqfromLatin1( "Toolbar" ) ) +        else if ( groupStr == TQString::fromLatin1( "Toolbar" ) )              group = KIcon::Toolbar; -        else if ( groupStr == TQString::tqfromLatin1( "MainToolbar" ) ) +        else if ( groupStr == TQString::fromLatin1( "MainToolbar" ) )              group = KIcon::MainToolbar; -        else if ( groupStr == TQString::tqfromLatin1( "Small" ) ) +        else if ( groupStr == TQString::fromLatin1( "Small" ) )              group = KIcon::Small; -        else if ( groupStr == TQString::tqfromLatin1( "Panel" ) ) +        else if ( groupStr == TQString::fromLatin1( "Panel" ) )              group = KIcon::Panel; -        else if ( groupStr == TQString::tqfromLatin1( "User" ) ) +        else if ( groupStr == TQString::fromLatin1( "User" ) )              group = KIcon::User;          KIcon::Context context = KIcon::Any;          // From kicontheme.cpp -        if ( contextStr == TQString::tqfromLatin1( "Devices" ) ) +        if ( contextStr == TQString::fromLatin1( "Devices" ) )              context = KIcon::Device; -        else if ( contextStr == TQString::tqfromLatin1( "MimeTypes" ) ) +        else if ( contextStr == TQString::fromLatin1( "MimeTypes" ) )              context = KIcon::MimeType; -        else if ( contextStr == TQString::tqfromLatin1( "FileSystems" ) ) +        else if ( contextStr == TQString::fromLatin1( "FileSystems" ) )              context = KIcon::FileSystem; -        else if ( contextStr == TQString::tqfromLatin1( "Applications" ) ) +        else if ( contextStr == TQString::fromLatin1( "Applications" ) )              context = KIcon::Application; -        else if ( contextStr == TQString::tqfromLatin1( "Actions" ) ) +        else if ( contextStr == TQString::fromLatin1( "Actions" ) )              context = KIcon::Action; -        else if ( contextStr == QString::tqfromLatin1( "Animations" ) ) +        else if ( contextStr == QString::fromLatin1( "Animations" ) )              context = KIcon::Animation; -        else if ( contextStr == QString::tqfromLatin1( "Categories" ) ) +        else if ( contextStr == QString::fromLatin1( "Categories" ) )              context = KIcon::Category; -        else if ( contextStr == QString::tqfromLatin1( "Emblems" ) ) +        else if ( contextStr == QString::fromLatin1( "Emblems" ) )              context = KIcon::Emblem; -        else if ( contextStr == QString::tqfromLatin1( "Emotes" ) ) +        else if ( contextStr == QString::fromLatin1( "Emotes" ) )              context = KIcon::Emote; -        else if ( contextStr == QString::tqfromLatin1( "International" ) ) +        else if ( contextStr == QString::fromLatin1( "International" ) )              context = KIcon::International; -        else if ( contextStr == QString::tqfromLatin1( "Places" ) ) +        else if ( contextStr == QString::fromLatin1( "Places" ) )              context = KIcon::Place; -        else if ( contextStr == QString::tqfromLatin1( "tqStatus" ) ) -            context = KIcon::tqStatusIcon; +        else if ( contextStr == QString::fromLatin1( "Status" ) ) +            context = KIcon::StatusIcon;  	KIconDialog dlg(0, "icon dialog");  	kapp->setTopWidget( &dlg ); | 
