diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-04 14:14:55 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-04 14:14:55 -0600 |
commit | de9b6c9ad15f9f51812daae17cce635d1050a9ba (patch) | |
tree | 6b26400ab1a616925443c5d365246eb86c9bad57 /kdialog | |
parent | 4f841fbbbc5d3399535ade061699cc76363c7a3f (diff) | |
download | tdebase-de9b6c9ad15f9f51812daae17cce635d1050a9ba.tar.gz tdebase-de9b6c9ad15f9f51812daae17cce635d1050a9ba.zip |
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'kdialog')
-rw-r--r-- | kdialog/kdialog.cpp | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/kdialog/kdialog.cpp b/kdialog/kdialog.cpp index 67b1af208..674333190 100644 --- a/kdialog/kdialog.cpp +++ b/kdialog/kdialog.cpp @@ -596,47 +596,47 @@ static int directCommand(TDECmdLineArgs *args) if (args->count() >= 1) { contextStr = TQString::fromLocal8Bit(args->arg(0)); } - KIcon::Group group = KIcon::NoGroup; + TDEIcon::Group group = TDEIcon::NoGroup; if ( groupStr == TQString::fromLatin1( "Desktop" ) ) - group = KIcon::Desktop; + group = TDEIcon::Desktop; else if ( groupStr == TQString::fromLatin1( "Toolbar" ) ) - group = KIcon::Toolbar; + group = TDEIcon::Toolbar; else if ( groupStr == TQString::fromLatin1( "MainToolbar" ) ) - group = KIcon::MainToolbar; + group = TDEIcon::MainToolbar; else if ( groupStr == TQString::fromLatin1( "Small" ) ) - group = KIcon::Small; + group = TDEIcon::Small; else if ( groupStr == TQString::fromLatin1( "Panel" ) ) - group = KIcon::Panel; + group = TDEIcon::Panel; else if ( groupStr == TQString::fromLatin1( "User" ) ) - group = KIcon::User; - KIcon::Context context = KIcon::Any; + group = TDEIcon::User; + TDEIcon::Context context = TDEIcon::Any; // From kicontheme.cpp if ( contextStr == TQString::fromLatin1( "Devices" ) ) - context = KIcon::Device; + context = TDEIcon::Device; else if ( contextStr == TQString::fromLatin1( "MimeTypes" ) ) - context = KIcon::MimeType; + context = TDEIcon::MimeType; else if ( contextStr == TQString::fromLatin1( "FileSystems" ) ) - context = KIcon::FileSystem; + context = TDEIcon::FileSystem; else if ( contextStr == TQString::fromLatin1( "Applications" ) ) - context = KIcon::Application; + context = TDEIcon::Application; else if ( contextStr == TQString::fromLatin1( "Actions" ) ) - context = KIcon::Action; + context = TDEIcon::Action; else if ( contextStr == TQString::fromLatin1( "Animations" ) ) - context = KIcon::Animation; + context = TDEIcon::Animation; else if ( contextStr == TQString::fromLatin1( "Categories" ) ) - context = KIcon::Category; + context = TDEIcon::Category; else if ( contextStr == TQString::fromLatin1( "Emblems" ) ) - context = KIcon::Emblem; + context = TDEIcon::Emblem; else if ( contextStr == TQString::fromLatin1( "Emotes" ) ) - context = KIcon::Emote; + context = TDEIcon::Emote; else if ( contextStr == TQString::fromLatin1( "International" ) ) - context = KIcon::International; + context = TDEIcon::International; else if ( contextStr == TQString::fromLatin1( "Places" ) ) - context = KIcon::Place; + context = TDEIcon::Place; else if ( contextStr == TQString::fromLatin1( "Status" ) ) - context = KIcon::StatusIcon; + context = TDEIcon::StatusIcon; - KIconDialog dlg(0, "icon dialog"); + TDEIconDialog dlg(0, "icon dialog"); kapp->setTopWidget( &dlg ); dlg.setup( group, context); if (!title.isNull()) |