summaryrefslogtreecommitdiffstats
path: root/src/kile/kilelauncher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kilelauncher.cpp')
-rw-r--r--src/kile/kilelauncher.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kile/kilelauncher.cpp b/src/kile/kilelauncher.cpp
index 507ee70..1899e06 100644
--- a/src/kile/kilelauncher.cpp
+++ b/src/kile/kilelauncher.cpp
@@ -172,7 +172,7 @@
if ( path.isNull() )
{
- emit(message(Error, i18n("There is no executable named \"%1\" in your path.").tqarg(exe)));
+ emit(message(Error, i18n("There is no executable named \"%1\" in your path.").arg(exe)));
return false;
}
else
@@ -180,7 +180,7 @@
TQFileInfo fi(path);
if ( ! fi.isExecutable() )
{
- emit(message(Error, i18n("You do not have permission to run %1.").tqarg(path)));
+ emit(message(Error, i18n("You do not have permission to run %1.").arg(path)));
return false;
}
}
@@ -208,7 +208,7 @@
if (m_proc->exitStatus() != 0)
{
type = Error;
- emit(message(type,i18n("finished with exit status %1").tqarg(m_proc->exitStatus())));
+ emit(message(type,i18n("finished with exit status %1").arg(m_proc->exitStatus())));
}
if (type == Info)
@@ -282,7 +282,7 @@
KLibFactory *factory = KLibLoader::self()->factory(m_libName);
if (factory == 0)
{
- emit(message(Error, i18n("Could not find the %1 library.").tqarg(m_libName)));
+ emit(message(Error, i18n("Could not find the %1 library.").arg(m_libName)));
return false;
}
@@ -293,7 +293,7 @@
if (m_part == 0)
{
- emit(message(Error, i18n("Could not create component %1 from the library %2.").tqarg(m_className).tqarg(m_libName)));
+ emit(message(Error, i18n("Could not create component %1 from the library %2.").arg(m_className).arg(m_libName)));
emit(done(Failed));
return false;
}