summaryrefslogtreecommitdiffstats
path: root/kdialog/kdialog.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 20:16:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 20:16:47 +0000
commit495d08bc2db58ee7fc4ea55a7158f2f61b82fc56 (patch)
treedaabcb652c07b9a17cad88ca50b63a2d91ead4a3 /kdialog/kdialog.cpp
parent50001f1757f97510e80cb1990e2f2d5b00144c2a (diff)
downloadtdebase-495d08bc2db58ee7fc4ea55a7158f2f61b82fc56.tar.gz
tdebase-495d08bc2db58ee7fc4ea55a7158f2f61b82fc56.zip
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1211357 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdialog/kdialog.cpp')
-rw-r--r--kdialog/kdialog.cpp50
1 files changed, 25 insertions, 25 deletions
diff --git a/kdialog/kdialog.cpp b/kdialog/kdialog.cpp
index 8cf9b581f..297822e96 100644
--- a/kdialog/kdialog.cpp
+++ b/kdialog/kdialog.cpp
@@ -108,10 +108,10 @@ class WinIdEmbedder: public QObject
{
public:
WinIdEmbedder(bool printID, WId winId):
- TQObject(qApp), print(printID), id(winId)
+ TQObject(tqApp), print(printID), id(winId)
{
- if (qApp)
- qApp->installEventFilter(this);
+ if (tqApp)
+ tqApp->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::fromLatin1("\\n") )) >= 0)
+ while ((pos = text.find( TQString::tqfromLatin1("\\n") )) >= 0)
{
- text.replace(pos, 2, TQString::fromLatin1("\n"));
+ text.tqreplace(pos, 2, TQString::tqfromLatin1("\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 geometry
+ // copied from KFileDialog::getSaveFileName(), so we can add tqgeometry
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::fromLatin1( "Desktop" ) )
+ if ( groupStr == TQString::tqfromLatin1( "Desktop" ) )
group = KIcon::Desktop;
- else if ( groupStr == TQString::fromLatin1( "Toolbar" ) )
+ else if ( groupStr == TQString::tqfromLatin1( "Toolbar" ) )
group = KIcon::Toolbar;
- else if ( groupStr == TQString::fromLatin1( "MainToolbar" ) )
+ else if ( groupStr == TQString::tqfromLatin1( "MainToolbar" ) )
group = KIcon::MainToolbar;
- else if ( groupStr == TQString::fromLatin1( "Small" ) )
+ else if ( groupStr == TQString::tqfromLatin1( "Small" ) )
group = KIcon::Small;
- else if ( groupStr == TQString::fromLatin1( "Panel" ) )
+ else if ( groupStr == TQString::tqfromLatin1( "Panel" ) )
group = KIcon::Panel;
- else if ( groupStr == TQString::fromLatin1( "User" ) )
+ else if ( groupStr == TQString::tqfromLatin1( "User" ) )
group = KIcon::User;
KIcon::Context context = KIcon::Any;
// From kicontheme.cpp
- if ( contextStr == TQString::fromLatin1( "Devices" ) )
+ if ( contextStr == TQString::tqfromLatin1( "Devices" ) )
context = KIcon::Device;
- else if ( contextStr == TQString::fromLatin1( "MimeTypes" ) )
+ else if ( contextStr == TQString::tqfromLatin1( "MimeTypes" ) )
context = KIcon::MimeType;
- else if ( contextStr == TQString::fromLatin1( "FileSystems" ) )
+ else if ( contextStr == TQString::tqfromLatin1( "FileSystems" ) )
context = KIcon::FileSystem;
- else if ( contextStr == TQString::fromLatin1( "Applications" ) )
+ else if ( contextStr == TQString::tqfromLatin1( "Applications" ) )
context = KIcon::Application;
- else if ( contextStr == TQString::fromLatin1( "Actions" ) )
+ else if ( contextStr == TQString::tqfromLatin1( "Actions" ) )
context = KIcon::Action;
- else if ( contextStr == QString::fromLatin1( "Animations" ) )
+ else if ( contextStr == QString::tqfromLatin1( "Animations" ) )
context = KIcon::Animation;
- else if ( contextStr == QString::fromLatin1( "Categories" ) )
+ else if ( contextStr == QString::tqfromLatin1( "Categories" ) )
context = KIcon::Category;
- else if ( contextStr == QString::fromLatin1( "Emblems" ) )
+ else if ( contextStr == QString::tqfromLatin1( "Emblems" ) )
context = KIcon::Emblem;
- else if ( contextStr == QString::fromLatin1( "Emotes" ) )
+ else if ( contextStr == QString::tqfromLatin1( "Emotes" ) )
context = KIcon::Emote;
- else if ( contextStr == QString::fromLatin1( "International" ) )
+ else if ( contextStr == QString::tqfromLatin1( "International" ) )
context = KIcon::International;
- else if ( contextStr == QString::fromLatin1( "Places" ) )
+ else if ( contextStr == QString::tqfromLatin1( "Places" ) )
context = KIcon::Place;
- else if ( contextStr == QString::fromLatin1( "Status" ) )
- context = KIcon::StatusIcon;
+ else if ( contextStr == QString::tqfromLatin1( "tqStatus" ) )
+ context = KIcon::tqStatusIcon;
KIconDialog dlg(0, "icon dialog");
kapp->setTopWidget( &dlg );