Remove additional unneeded tq method conversions

pull/1/head
Timothy Pearson 13 years ago
parent d2b1a22452
commit c4c0cb5e79

@ -42,7 +42,7 @@ ResultItem::ResultItem(KListBox *lb, const TQString &tool, int status, const TQV
TQString itemcolor = "black"; TQString itemcolor = "black";
if ( tests[i].status() == ConfigTest::Failure ) itemcolor = "#FFA201"; if ( tests[i].status() == ConfigTest::Failure ) itemcolor = "#FFA201";
else if ( tests[i].status() == ConfigTest::Critical ) itemcolor = "#AA0000"; else if ( tests[i].status() == ConfigTest::Critical ) itemcolor = "#AA0000";
rt += TQString("<li><b><font color=\"%1\">%2</font></b>: &nbsp;%3</li>").tqarg(itemcolor).tqarg(tests[i].name()).tqarg(tests[i].resultText()); rt += TQString("<li><b><font color=\"%1\">%2</font></b>: &nbsp;%3</li>").arg(itemcolor).arg(tests[i].name()).arg(tests[i].resultText());
} }
rt += "</ul>"; rt += "</ul>";
@ -58,7 +58,7 @@ ResultItem::ResultItem(KListBox *lb, const TQString &tool, int status, const TQV
statustr = i18n("Critical failure, Kile will not function properly"); statustr = i18n("Critical failure, Kile will not function properly");
} }
m_richText = new TQSimpleRichText(rt.tqarg(color).tqarg(tool).tqarg(statustr), listBox()->font()); m_richText = new TQSimpleRichText(rt.arg(color).arg(tool).arg(statustr), listBox()->font());
m_richText->setWidth(listBox()->width()); m_richText->setWidth(listBox()->width());
//this is for sorting only //this is for sorting only
@ -157,9 +157,9 @@ void ConfigChecker::finished(bool ok)
TQString cap = i18n("Test Results"); TQString cap = i18n("Test Results");
if ( critical.count() > 0 ) if ( critical.count() > 0 )
KMessageBox::error(this, i18n("<qt>The following tools did not pass all <b>critical</b> tests:<br>%1<br>Your system is not ready to use. Please consult the results to find out what to fix.</qt>").tqarg(critical.join(", ")), cap); KMessageBox::error(this, i18n("<qt>The following tools did not pass all <b>critical</b> tests:<br>%1<br>Your system is not ready to use. Please consult the results to find out what to fix.</qt>").arg(critical.join(", ")), cap);
else if ( failure.count() > 0 ) else if ( failure.count() > 0 )
KMessageBox::information(this, i18n("The following tools did not pass all tests:\n %1\nYou will still be able to use Kile; however, not all features are guaranteed to work.").tqarg(failure.join(", ")), cap); KMessageBox::information(this, i18n("The following tools did not pass all tests:\n %1\nYou will still be able to use Kile; however, not all features are guaranteed to work.").arg(failure.join(", ")), cap);
else else
KMessageBox::information(this, i18n("No problems detected, your system is ready to use."), cap); KMessageBox::information(this, i18n("No problems detected, your system is ready to use."), cap);
} }

@ -474,7 +474,7 @@ void ConfigCodeCompletion::addClicked()
// check if this entry already exists // check if this entry already exists
if ( isListviewEntry(listview,basename) ) if ( isListviewEntry(listview,basename) )
{ {
m_logwidget->printMsg(KileTool::Info,i18n("Wordlist '%1' is already used.").tqarg(basename),i18n("Complete")); m_logwidget->printMsg(KileTool::Info,i18n("Wordlist '%1' is already used.").arg(basename),i18n("Complete"));
continue; continue;
} }

@ -271,7 +271,7 @@ void ConfigStructure::showSectioning(const TQStringList *list)
TQString label1,label2,label3; TQString label1,label2,label3;
for (uint i=0; i<5; ++i) { for (uint i=0; i<5; ++i) {
if ( i < list->count() ) { if ( i < list->count() ) {
label1 = TQString("%1").tqarg(i+1); label1 = TQString("%1").arg(i+1);
label2 = (*list)[i]; label2 = (*list)[i];
label3 = ( i < (uint)m_structurelevel->value() ) ? "open" : "close"; label3 = ( i < (uint)m_structurelevel->value() ) ? "open" : "close";
} else { } else {

@ -45,7 +45,7 @@ class KileCenteredTableItem : public TQTableItem
public: public:
KileCenteredTableItem(TQTable *table,EditType et,const TQString& text) : TQTableItem(table,et,text) {} KileCenteredTableItem(TQTable *table,EditType et,const TQString& text) : TQTableItem(table,et,text) {}
void paint(TQPainter* p,const TQColorGroup& cg,const TQRect& cr,bool selected); void paint(TQPainter* p,const TQColorGroup& cg,const TQRect& cr,bool selected);
int tqalignment() const { return TQt::AlignHCenter; } int alignment() const { return TQt::AlignHCenter; }
}; };
class KileTable : public TQTable class KileTable : public TQTable

@ -77,7 +77,7 @@ TQString ConfigTest::resultText() const
{ {
str += " (" + m_altArg + " => " + m_arg + ')'; str += " (" + m_altArg + " => " + m_arg + ')';
if ( status()==Failure && s_msgFailure.contains(m_altArg) ) if ( status()==Failure && s_msgFailure.contains(m_altArg) )
str += TQString("<br>(%1)").tqarg( s_msgFailure[m_altArg] ); str += TQString("<br>(%1)").arg( s_msgFailure[m_altArg] );
return str; return str;
} }
else if ( m_name == "version" ) else if ( m_name == "version" )

@ -222,7 +222,7 @@ bool Recorder::eventFilter(TQObject* /* o */, TQEvent *e) {
} }
TQString ExecuteJScriptAction::getDescription() const { TQString ExecuteJScriptAction::getDescription() const {
return i18n("Script execution of %1").tqarg(m_jScript->getFileName()); return i18n("Script execution of %1").arg(m_jScript->getFileName());
} }

@ -313,7 +313,7 @@ TQString IncludeGraphics::getInfo()
TQFileInfo fi( edit_file->text() ); TQFileInfo fi( edit_file->text() );
return "% " + fi.baseName() + '.' + fi.extension(true) return "% " + fi.baseName() + '.' + fi.extension(true)
+ TQString(": %1x%2 pixel").tqarg(wpx).tqarg(hpx) + TQString(": %1x%2 pixel").arg(wpx).arg(hpx)
+ ", " + dpi + "dpi" + ", " + dpi + "dpi"
+ ", " + wcm + 'x' + hcm + " cm" + ", " + wcm + 'x' + hcm + " cm"
+ ", bb=" + edit_bb->text(); + ", bb=" + edit_bb->text();
@ -328,7 +328,7 @@ void IncludeGraphics::setInfo()
if ( !edit_file->text().isEmpty() && getPictureSize(wpx,hpx,dpi,wcm,hcm) ) if ( !edit_file->text().isEmpty() && getPictureSize(wpx,hpx,dpi,wcm,hcm) )
{ {
text = TQString("%1x%2 pixel").tqarg(wpx).tqarg(hpx) text = TQString("%1x%2 pixel").arg(wpx).arg(hpx)
+ " / " + wcm + 'x' + hcm + " cm" + " / " + wcm + 'x' + hcm + " cm"
+ " (" + dpi + "dpi)"; + " (" + dpi + "dpi)";
} }
@ -344,7 +344,7 @@ bool IncludeGraphics::getPictureSize(int &wpx, int &hpx, TQString &dpi, TQString
wpx = m_width; wpx = m_width;
hpx = m_height; hpx = m_height;
dpi = TQString("%1").tqarg((int)(m_resolution+0.5)); dpi = TQString("%1").arg((int)(m_resolution+0.5));
// convert from inch to cm // convert from inch to cm
float w = (float)m_width / m_resolution * 2.54; float w = (float)m_width / m_resolution * 2.54;
@ -484,9 +484,9 @@ void IncludeGraphics::slotProcessExited(KProcess* proc)
int bbh = (int)( (float)m_height*72.0/m_resolution + 0.5 ); int bbh = (int)( (float)m_height*72.0/m_resolution + 0.5 );
// take width and height as parameters for the bounding box // take width and height as parameters for the bounding box
edit_bb->setText( TQString("0 0 ") + TQString("%1").tqarg(bbw) edit_bb->setText( TQString("0 0 ") + TQString("%1").arg(bbw)
+ ' ' + ' '
+ TQString("%1").tqarg(bbh) + TQString("%1").arg(bbh)
); );
// show information // show information

@ -918,16 +918,16 @@ void Kile::updateModeStatus()
if (project) if (project)
{ {
if (m_singlemode) if (m_singlemode)
statusBar()->changeItem(i18n("Project: %1").tqarg(project->name()), ID_HINTTEXT); statusBar()->changeItem(i18n("Project: %1").arg(project->name()), ID_HINTTEXT);
else else
statusBar()->changeItem(i18n("Project: %1 (Master document: %2)").tqarg(project->name()).tqarg(shortName), ID_HINTTEXT); statusBar()->changeItem(i18n("Project: %1 (Master document: %2)").arg(project->name()).arg(shortName), ID_HINTTEXT);
} }
else else
{ {
if (m_singlemode) if (m_singlemode)
statusBar()->changeItem(i18n("Normal mode"), ID_HINTTEXT); statusBar()->changeItem(i18n("Normal mode"), ID_HINTTEXT);
else else
statusBar()->changeItem(i18n("Master document: %1").tqarg(shortName), ID_HINTTEXT); statusBar()->changeItem(i18n("Master document: %1").arg(shortName), ID_HINTTEXT);
} }
if (m_singlemode) if (m_singlemode)
@ -937,7 +937,7 @@ void Kile::updateModeStatus()
} }
else else
{ {
ModeAction->setText(i18n("Normal mode (current master document: %1)").tqarg(shortName)); ModeAction->setText(i18n("Normal mode (current master document: %1)").arg(shortName));
ModeAction->setChecked(true); ModeAction->setChecked(true);
} }
@ -1453,8 +1453,8 @@ void Kile::initMenu()
<< "tag_textit" << "tag_textsl" << "tag_textbf" << "tag_underline" << "tag_textit" << "tag_textsl" << "tag_textbf" << "tag_underline"
<< "tag_texttt" << "tag_textsc" << "tag_emph" << "tag_strong" << "tag_texttt" << "tag_textsc" << "tag_emph" << "tag_strong"
<< "tag_rmfamily" << "tag_sffamily" << "tag_ttfamily" << "tag_rmfamily" << "tag_sffamily" << "tag_ttfamily"
<< "tag_mdseries" << "tag_bfseries" << "tag_uptqshape" << "tag_mdseries" << "tag_bfseries" << "tag_upshape"
<< "tag_ittqshape" << "tag_sltqshape" << "tag_sctqshape" << "tag_itshape" << "tag_slshape" << "tag_scshape"
<< "tag_newline" << "tag_newpage" << "tag_linebreak" << "tag_pagebreak" << "tag_newline" << "tag_newpage" << "tag_linebreak" << "tag_pagebreak"
<< "tag_bigskip" << "tag_medskip" << "tag_smallskip" << "tag_bigskip" << "tag_medskip" << "tag_smallskip"
<< "tag_hspace" << "tag_hspace*" << "tag_vspace" << "tag_vspace*" << "tag_hspace" << "tag_hspace*" << "tag_vspace" << "tag_vspace*"
@ -1654,10 +1654,10 @@ void Kile::insertTag(const KileAction::TagData& data,const TQStringList &pkgs)
if( warnPkgs.count() > 0 ) if( warnPkgs.count() > 0 )
{ {
if( warnPkgs.count() == 1 ) if( warnPkgs.count() == 1 )
m_logWidget->printMsg(KileTool::Error, i18n("You have to include the package %1.").tqarg(warnPkgs.join(",")), m_logWidget->printMsg(KileTool::Error, i18n("You have to include the package %1.").arg(warnPkgs.join(",")),
i18n("Insert text")); i18n("Insert text"));
else else
m_logWidget->printMsg(KileTool::Error, i18n("You have to include the packages %1.").tqarg(warnPkgs.join(",")), m_logWidget->printMsg(KileTool::Error, i18n("You have to include the packages %1.").arg(warnPkgs.join(",")),
i18n("Insert text")); i18n("Insert text"));
} }
} }
@ -2026,7 +2026,7 @@ void Kile::toggleMode()
while ( (pos = (int)shortName.find('/')) != -1 ) while ( (pos = (int)shortName.find('/')) != -1 )
shortName.remove(0,pos+1); shortName.remove(0,pos+1);
ModeAction->setText(i18n("Normal mode (current master document: %1)").tqarg(shortName)); ModeAction->setText(i18n("Normal mode (current master document: %1)").arg(shortName));
ModeAction->setChecked(true); ModeAction->setChecked(true);
m_singlemode=false; m_singlemode=false;
} }

@ -193,7 +193,7 @@ void KileAbbrevView::changeAbbreviation(KListViewItem *item, const TQString &abb
void KileAbbrevView::deleteAbbreviation(KListViewItem *item) void KileAbbrevView::deleteAbbreviation(KListViewItem *item)
{ {
TQString abbrev = item->text(ALVabbrev); TQString abbrev = item->text(ALVabbrev);
TQString message = i18n("Delete the abbreviation '%1'?").tqarg(abbrev); TQString message = i18n("Delete the abbreviation '%1'?").arg(abbrev);
if ( KMessageBox::questionYesNo( this, if ( KMessageBox::questionYesNo( this,
"<center>" + message + "</center>", "<center>" + message + "</center>",
i18n("Delete Abbreviation") ) == KMessageBox::Yes ) i18n("Delete Abbreviation") ) == KMessageBox::Yes )

@ -20,7 +20,7 @@
// - items are shown as a tree list // - items are shown as a tree list
// - encoding config page and spelling page are removed, // - encoding config page and spelling page are removed,
// because settings are also avaiblable with Kate // because settings are also avaiblable with Kate
// - tqgeometry of the dialog are saved and restored, because // - geometry of the dialog are saved and restored, because
// the initial values may be bad in some languages // the initial values may be bad in some languages
// 2007-03-17 dani // 2007-03-17 dani

@ -569,7 +569,7 @@ Kate::View* Manager::loadTemplate(TemplateItem *sel)
if (!tempdoc->openURL(KURL(sel->path()))) if (!tempdoc->openURL(KURL(sel->path())))
{ {
KMessageBox::error(m_ki->parentWidget(), i18n("Could not find template: %1").tqarg(sel->name()),i18n("File Not Found")); KMessageBox::error(m_ki->parentWidget(), i18n("Could not find template: %1").arg(sel->name()),i18n("File Not Found"));
} }
else else
{ {
@ -818,7 +818,7 @@ void Manager::fileSaveAll(bool amAutoSaving, bool disUntitled )
else else
{ {
KILE_DEBUG()<<"backing up failed ("<<url.prettyURL()<<" -> "<<backupUrl.prettyURL()<<")"<<endl; KILE_DEBUG()<<"backing up failed ("<<url.prettyURL()<<" -> "<<backupUrl.prettyURL()<<")"<<endl;
emit printMsg(KileTool::Error,i18n("The file %1 could not be saved, check the permissions and the free disk space!").tqarg(backupUrl.prettyURL()),i18n("Autosave")); emit printMsg(KileTool::Error,i18n("The file %1 could not be saved, check the permissions and the free disk space!").arg(backupUrl.prettyURL()),i18n("Autosave"));
} }
} }
@ -827,7 +827,7 @@ void Manager::fileSaveAll(bool amAutoSaving, bool disUntitled )
fi.refresh(); fi.refresh();
if(saveResult == Kate::View::SAVE_ERROR && fi.size() == 0 && !url.isEmpty()) // we probably hit bug #125809, inform the user of the possible consequences if(saveResult == Kate::View::SAVE_ERROR && fi.size() == 0 && !url.isEmpty()) // we probably hit bug #125809, inform the user of the possible consequences
emit printMsg(KileTool::Error,i18n("Kile encountered problems while saving the file %1. Do you have enough free disk space left?").tqarg(url.url()),i18n("Saving")); emit printMsg(KileTool::Error,i18n("Kile encountered problems while saving the file %1. Do you have enough free disk space left?").arg(url.url()),i18n("Saving"));
} }
} }
} }
@ -934,7 +934,7 @@ void Manager::fileSaveAs(Kate::View* view)
} }
if(KIO::NetAccess::exists(saveURL, true, kapp->mainWidget())) // check for writing possibility if(KIO::NetAccess::exists(saveURL, true, kapp->mainWidget())) // check for writing possibility
{ {
int r = KMessageBox::warningContinueCancel(m_ki->parentWidget(), i18n("A file with the name \"%1\" exists already. Do you want to overwrite it ?").tqarg(saveURL.fileName()), i18n("Overwrite File ?"), KGuiItem(i18n("&Overwrite")), TQString()); int r = KMessageBox::warningContinueCancel(m_ki->parentWidget(), i18n("A file with the name \"%1\" exists already. Do you want to overwrite it ?").arg(saveURL.fileName()), i18n("Overwrite File ?"), KGuiItem(i18n("&Overwrite")), TQString());
if(r != KMessageBox::Continue) if(r != KMessageBox::Continue)
{ {
continue; continue;
@ -1224,12 +1224,12 @@ void Manager::addToProject(KileProject* project, const KURL & url)
if (project->contains(realurl)) if (project->contains(realurl))
{ {
emit printMsg(KileTool::Info,i18n("The file %1 is already member of the project %2").tqarg(realurl.filename()).tqarg(project->name()),i18n("Add to Project")); emit printMsg(KileTool::Info,i18n("The file %1 is already member of the project %2").arg(realurl.filename()).arg(project->name()),i18n("Add to Project"));
return; return;
} }
else if(!fi.exists() || !fi.isReadable()) else if(!fi.exists() || !fi.isReadable())
{ {
emit printMsg( KileTool::Info,i18n("The file %1 can not be added because it does not exist or is not readable").tqarg(realurl.filename()),i18n("Add to Project")); emit printMsg( KileTool::Info,i18n("The file %1 can not be added because it does not exist or is not readable").arg(realurl.filename()),i18n("Add to Project"));
return; return;
} }
@ -1713,7 +1713,7 @@ void Manager::cleanUpTempFiles(const KURL &url, bool silent)
} }
if ( extlist.count() == 0 ) if ( extlist.count() == 0 )
emit printMsg(KileTool::Warning, i18n("Nothing to clean for %1").tqarg(fileName), i18n("Clean")); emit printMsg(KileTool::Warning, i18n("Nothing to clean for %1").arg(fileName), i18n("Clean"));
else else
{ {
for ( uint i = 0 ; i < extlist.count() ; ++i ) for ( uint i = 0 ; i < extlist.count() ; ++i )
@ -1722,7 +1722,7 @@ void Manager::cleanUpTempFiles(const KURL &url, bool silent)
KILE_DEBUG() << "About to remove file = " << file.name() << endl; KILE_DEBUG() << "About to remove file = " << file.name() << endl;
file.remove(); file.remove();
} }
emit printMsg(KileTool::Info, i18n("Cleaning %1 : %2").tqarg(fileName).tqarg(extlist.join(" ")), i18n("Clean")); emit printMsg(KileTool::Info, i18n("Cleaning %1 : %2").arg(fileName).arg(extlist.join(" ")), i18n("Clean"));
} }
} }
@ -1895,7 +1895,7 @@ TQStringList Manager::getProjectFiles()
void Manager::dontOpenWarning(KileProjectItem *item, const TQString &action, const TQString &filetype) void Manager::dontOpenWarning(KileProjectItem *item, const TQString &action, const TQString &filetype)
{ {
emit printMsg(KileTool::Info, i18n("not opened: %1 (%2)").tqarg(item->url().path()).tqarg(filetype), action); emit printMsg(KileTool::Info, i18n("not opened: %1 (%2)").arg(item->url().path()).arg(filetype), action);
} }
KileProjectItem* Manager::selectProjectFileItem(const TQString &label) KileProjectItem* Manager::selectProjectFileItem(const TQString &label)

@ -118,7 +118,7 @@ KURL Info::renameIfExist(const KURL& url)
TQString newURL = KInputDialog::getText( TQString newURL = KInputDialog::getText(
i18n("File Already Exists"), i18n("File Already Exists"),
i18n("A file with filename '%1' already exists.<br>Please provide \ i18n("A file with filename '%1' already exists.<br>Please provide \
another one, or click \"Cancel\" to overwrite it.").tqarg(ret.fileName()), another one, or click \"Cancel\" to overwrite it.").arg(ret.fileName()),
ret.filename(), ret.filename(),
&isOK); &isOK);
if(!isOK) if(!isOK)
@ -1158,7 +1158,7 @@ void LaTeXInfo::updateStruct()
{ {
if( (*it).type == KileStruct::NewEnvironment) if( (*it).type == KileStruct::NewEnvironment)
{ {
m_newCommands.append(TQString("\\begin{%1}%2%3").tqarg(m).tqarg(optArg).tqarg(mandArgs)); m_newCommands.append(TQString("\\begin{%1}%2%3").arg(m).arg(optArg).arg(mandArgs));
} }
else else
m_newCommands.append(m + optArg + mandArgs); m_newCommands.append(m + optArg + mandArgs);
@ -1166,8 +1166,8 @@ void LaTeXInfo::updateStruct()
} }
if( (*it).type == KileStruct::NewEnvironment) if( (*it).type == KileStruct::NewEnvironment)
{ {
m_newCommands.append(TQString("\\begin{%1}%3").tqarg(m).tqarg(mandArgs)); m_newCommands.append(TQString("\\begin{%1}%3").arg(m).arg(mandArgs));
m_newCommands.append(TQString("\\end{%1}").tqarg(m)); m_newCommands.append(TQString("\\end{%1}").arg(m));
} }
else else
m_newCommands.append(m + mandArgs); m_newCommands.append(m + mandArgs);

@ -1025,7 +1025,7 @@ TQStringList EditorExtension::findOpenedEnvironmentList(Kate::View *view, bool p
col = env.col; col = env.col;
if ( position ) if ( position )
envlist << env.name + TQString(",%1,%2").tqarg(row).tqarg(col); envlist << env.name + TQString(",%1,%2").arg(row).arg(col);
else else
envlist << env.name; envlist << env.name;

@ -117,7 +117,7 @@ void KileErrorHandler::showLogResults(const TQString &src)
m_ki->outputFilter()->setSource(src); m_ki->outputFilter()->setSource(src);
TQFileInfo fi(src); TQFileInfo fi(src);
TQString lf = fi.dirPath(true) + '/' + fi.baseName(true) + ".log"; TQString lf = fi.dirPath(true) + '/' + fi.baseName(true) + ".log";
m_ki->logWidget()->printMsg(KileTool::Info, i18n("Detecting errors (%1), please wait ...").tqarg(lf), i18n("Log") ); m_ki->logWidget()->printMsg(KileTool::Info, i18n("Detecting errors (%1), please wait ...").arg(lf), i18n("Log") );
if ( ! m_ki->outputFilter()->Run( lf ) ) if ( ! m_ki->outputFilter()->Run( lf ) )
{ {

@ -684,7 +684,7 @@ void KileGrepDialog::slotSearch()
TQRegExp re( getPattern() ); TQRegExp re( getPattern() );
if ( ! re.isValid() ) if ( ! re.isValid() )
{ {
KMessageBox::error( 0, i18n("Invalid regular expression: %1").tqarg(re.errorString()), i18n("Grep Tool Error") ); KMessageBox::error( 0, i18n("Invalid regular expression: %1").arg(re.errorString()), i18n("Grep Tool Error") );
return; return;
} }

@ -298,7 +298,7 @@ namespace KileHelp
void Help::noHelpAvailableFor(const TQString &word) void Help::noHelpAvailableFor(const TQString &word)
{ {
m_manager->info()->logWidget()->printMsg(KileTool::Error, i18n("Sorry, no help available for %1.").tqarg(word), i18n("Help")); m_manager->info()->logWidget()->printMsg(KileTool::Error, i18n("Sorry, no help available for %1.").arg(word), i18n("Help"));
} }
TQString Help::getKeyword(Kate::View *view) TQString Help::getKeyword(Kate::View *view)

@ -198,16 +198,16 @@ const TQStringList* KileInfo::retrieveList(const TQStringList* (KileDocument::In
{ {
KILE_DEBUG() << "\tusing root item " << root->url().fileName() << endl; KILE_DEBUG() << "\tusing root item " << root->url().fileName() << endl;
TQPtrList<KileProjectItem> tqchildren; TQPtrList<KileProjectItem> children;
tqchildren.append(root); children.append(root);
root->allChildren(&tqchildren); root->allChildren(&children);
const TQStringList *list; const TQStringList *list;
for (uint i=0; i < tqchildren.count(); ++i) for (uint i=0; i < children.count(); ++i)
{ {
KILE_DEBUG() << "\t" << tqchildren.at(i)->url().fileName() << endl; KILE_DEBUG() << "\t" << children.at(i)->url().fileName() << endl;
list = (tqchildren.at(i)->getInfo()->*getit)(); list = (children.at(i)->getInfo()->*getit)();
if (list) if (list)
{ {
for (uint i=0; i < list->count(); ++i) for (uint i=0; i < list->count(); ++i)

@ -497,12 +497,12 @@ namespace KileJScript {
if(o.isValid()) { if(o.isValid()) {
Value lineValue = o.get(m_interpreter->globalExec(), "line"); Value lineValue = o.get(m_interpreter->globalExec(), "line");
if(lineValue.type() == NumberType) { if(lineValue.type() == NumberType) {
KMessageBox::sorry(0L, i18n("The following exception has occurred at line %1 during execution of the script:\n%2").tqarg(lineValue.toInt32(m_interpreter->globalExec())).tqarg(value.toString(m_interpreter->globalExec()).qstring()), i18n("Exception")); KMessageBox::sorry(0L, i18n("The following exception has occurred at line %1 during execution of the script:\n%2").arg(lineValue.toInt32(m_interpreter->globalExec())).arg(value.toString(m_interpreter->globalExec()).qstring()), i18n("Exception"));
return; return;
} }
} }
} }
KMessageBox::sorry(0L, i18n("The following exception has occurred during execution of the script:\n%1").tqarg(value.toString(m_interpreter->globalExec()).qstring()), i18n("Exception")); KMessageBox::sorry(0L, i18n("The following exception has occurred during execution of the script:\n%1").arg(value.toString(m_interpreter->globalExec()).qstring()), i18n("Exception"));
} }
} }
@ -544,7 +544,7 @@ m_kileInfo->viewManager()->currentView()->down();*/
if(requiredVersionTagExp.search(firstLine) != -1) { if(requiredVersionTagExp.search(firstLine) != -1) {
TQString requiredKileVersion = requiredVersionTagExp.cap(2); TQString requiredKileVersion = requiredVersionTagExp.cap(2);
if(compareVersionStrings(requiredKileVersion, kileFullVersion) > 0) { if(compareVersionStrings(requiredKileVersion, kileFullVersion) > 0) {
KMessageBox::sorry(0L, i18n("Version %1 of Kile is at least required to execute the script \"%2\". The execution has been aborted.").tqarg(requiredKileVersion).tqarg(script->getName()), i18n("Version Error")); KMessageBox::sorry(0L, i18n("Version %1 of Kile is at least required to execute the script \"%2\". The execution has been aborted.").arg(requiredKileVersion).arg(script->getName()), i18n("Version Error"));
return; return;
} }
} }
@ -779,7 +779,7 @@ m_kileInfo->viewManager()->currentView()->down();*/
ScriptExecutionAction::ScriptExecutionAction(unsigned int id, KileJScript::Manager *manager, KActionCollection* parent) : KAction(TQString(), KShortcut(), NULL, NULL, parent, TQString("script_execution_" + TQString::number(id)).ascii()), m_manager(manager), m_id(id) { ScriptExecutionAction::ScriptExecutionAction(unsigned int id, KileJScript::Manager *manager, KActionCollection* parent) : KAction(TQString(), KShortcut(), NULL, NULL, parent, TQString("script_execution_" + TQString::number(id)).ascii()), m_manager(manager), m_id(id) {
const KileJScript::JScript *script = m_manager->getScript(m_id); const KileJScript::JScript *script = m_manager->getScript(m_id);
Q_ASSERT(script); Q_ASSERT(script);
setText(i18n("Execution of %1").tqarg(script->getName())); setText(i18n("Execution of %1").arg(script->getName()));
connect(this, TQT_SIGNAL(activated()), this, TQT_SLOT(executeScript())); connect(this, TQT_SIGNAL(activated()), this, TQT_SLOT(executeScript()));
} }

@ -172,7 +172,7 @@
if ( path.isNull() ) 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; return false;
} }
else else
@ -180,7 +180,7 @@
TQFileInfo fi(path); TQFileInfo fi(path);
if ( ! fi.isExecutable() ) 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; return false;
} }
} }
@ -208,7 +208,7 @@
if (m_proc->exitStatus() != 0) if (m_proc->exitStatus() != 0)
{ {
type = Error; 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) if (type == Info)
@ -282,7 +282,7 @@
KLibFactory *factory = KLibLoader::self()->factory(m_libName); KLibFactory *factory = KLibLoader::self()->factory(m_libName);
if (factory == 0) 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; return false;
} }
@ -293,7 +293,7 @@
if (m_part == 0) 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)); emit(done(Failed));
return false; return false;
} }

@ -115,7 +115,7 @@ void KileMultiTabBarInternal::setStyle(enum KileMultiTabBar::KileMultiTabBarStyl
mainLayout->setAutoAdd(true); mainLayout->setAutoAdd(true);
} }
viewport()->tqrepaint(); viewport()->repaint();
} }
void KileMultiTabBarInternal::drawContents ( TQPainter * paint, int clipx, int clipy, int clipw, int cliph ) void KileMultiTabBarInternal::drawContents ( TQPainter * paint, int clipx, int clipy, int clipw, int cliph )
@ -193,8 +193,8 @@ void KileMultiTabBarInternal::mousePressEvent(TQMouseEvent *ev)
void KileMultiTabBarInternal::resizeEvent(TQResizeEvent *ev) { void KileMultiTabBarInternal::resizeEvent(TQResizeEvent *ev) {
/* KILE_DEBUG()<<"KileMultiTabBarInternal::resizeEvent"<<endl; /* KILE_DEBUG()<<"KileMultiTabBarInternal::resizeEvent"<<endl;
KILE_DEBUG()<<"KileMultiTabBarInternal::resizeEvent - box tqgeometry"<<box->tqgeometry()<<endl; KILE_DEBUG()<<"KileMultiTabBarInternal::resizeEvent - box geometry"<<box->geometry()<<endl;
KILE_DEBUG()<<"KileMultiTabBarInternal::resizeEvent - tqgeometry"<<tqgeometry()<<endl;*/ KILE_DEBUG()<<"KileMultiTabBarInternal::resizeEvent - geometry"<<geometry()<<endl;*/
if (ev) TQScrollView::resizeEvent(ev); if (ev) TQScrollView::resizeEvent(ev);
TQValueList<KileMultiTabBarTab*> visibleTabList; TQValueList<KileMultiTabBarTab*> visibleTabList;
for(KileMultiTabBarTab *tab = m_tabs.first(); tab; tab = m_tabs.next()) { for(KileMultiTabBarTab *tab = m_tabs.first(); tab; tab = m_tabs.next()) {
@ -392,7 +392,7 @@ void KileMultiTabBarInternal::setPosition(enum KileMultiTabBar::KileMultiTabBarP
m_position=pos; m_position=pos;
for (uint i=0;i<m_tabs.count();i++) for (uint i=0;i<m_tabs.count();i++)
m_tabs.at(i)->setTabsPosition(m_position); m_tabs.at(i)->setTabsPosition(m_position);
viewport()->tqrepaint(); viewport()->repaint();
} }
KileMultiTabBarButton::KileMultiTabBarButton(const TQPixmap& pic,const TQString& text, TQPopupMenu *popup, KileMultiTabBarButton::KileMultiTabBarButton(const TQPixmap& pic,const TQString& text, TQPopupMenu *popup,
@ -453,13 +453,13 @@ void KileMultiTabBarButton::slotClicked()
void KileMultiTabBarButton::setPosition(KileMultiTabBar::KileMultiTabBarPosition pos) void KileMultiTabBarButton::setPosition(KileMultiTabBar::KileMultiTabBarPosition pos)
{ {
m_position=pos; m_position=pos;
tqrepaint(); repaint();
} }
void KileMultiTabBarButton::setStyle(KileMultiTabBar::KileMultiTabBarStyle style) void KileMultiTabBarButton::setStyle(KileMultiTabBar::KileMultiTabBarStyle style)
{ {
m_style=style; m_style=style;
tqrepaint(); repaint();
} }
void KileMultiTabBarButton::hideEvent( TQHideEvent* he) { void KileMultiTabBarButton::hideEvent( TQHideEvent* he) {
@ -544,7 +544,7 @@ void KileMultiTabBarTab::setTabsPosition(KileMultiTabBar::KileMultiTabBarPositio
} }
setPosition(pos); setPosition(pos);
// tqrepaint(); // repaint();
} }
void KileMultiTabBarTab::setIcon(const TQString& icon) void KileMultiTabBarTab::setIcon(const TQString& icon)
@ -1011,7 +1011,7 @@ void KileMultiTabBar::fontChange(const TQFont& /* oldFont */)
{ {
for (uint i=0;i<tabs()->count();i++) for (uint i=0;i<tabs()->count();i++)
tabs()->at(i)->resize(); tabs()->at(i)->resize();
tqrepaint(); repaint();
} }
TQPtrList<KileMultiTabBarTab>* KileMultiTabBar::tabs() {return m_internal->tabs();} TQPtrList<KileMultiTabBarTab>* KileMultiTabBar::tabs() {return m_internal->tabs();}

@ -368,7 +368,7 @@ bool KileProject::load()
{ {
if(KMessageBox::warningYesNo(0L,i18n("The project file of %1 was created by a newer version of kile.\ if(KMessageBox::warningYesNo(0L,i18n("The project file of %1 was created by a newer version of kile.\
Opening it can lead to unexpected results.\n\ Opening it can lead to unexpected results.\n\
Do you really want to continue (not recommended)?").tqarg(m_name), Do you really want to continue (not recommended)?").arg(m_name),
TQString(), KStdGuiItem::yes(), KStdGuiItem::no(),TQString(),KMessageBox::Dangerous) == KMessageBox::No) TQString(), KStdGuiItem::yes(), KStdGuiItem::no(),TQString(),KMessageBox::Dangerous) == KMessageBox::No)
{ {
m_invalid=true; m_invalid=true;

@ -435,7 +435,7 @@ void KileNewProjectDlg::slotOk()
if ( TQFileInfo( TQDir(fi.dirPath()) , file().stripWhiteSpace()).exists() ) if ( TQFileInfo( TQDir(fi.dirPath()) , file().stripWhiteSpace()).exists() )
{ {
if (KMessageBox::warningYesNo(this, i18n("The file \"%1\" already exists, overwrite it?").tqarg(file()), if (KMessageBox::warningYesNo(this, i18n("The file \"%1\" already exists, overwrite it?").arg(file()),
i18n("File Already Exists")) == KMessageBox::No) i18n("File Already Exists")) == KMessageBox::No)
return; return;
} }

@ -370,7 +370,7 @@ KileProjectViewItem* KileProjectView::folder(const KileProjectItem *pi, KileProj
if ( parent->type() == KileType::Folder ) if ( parent->type() == KileType::Folder )
return parent; return parent;
// we are looking at the tqchildren, if there is an existing folder for this type // we are looking at the children, if there is an existing folder for this type
KileProjectViewItem *folder; KileProjectViewItem *folder;
// determine the foldername for this type // determine the foldername for this type

@ -51,13 +51,13 @@ KileStatsDlg::KileStatsDlg(KileProject *project, KileDocument::TextInfo* docinfo
if(!m_project) // the active doc doesn't belong to a project if(!m_project) // the active doc doesn't belong to a project
{ {
setCaption(i18n("Statistics for %1").tqarg(m_docinfo->getDoc()->url().fileName())); setCaption(i18n("Statistics for %1").arg(m_docinfo->getDoc()->url().fileName()));
stats = m_docinfo->getStatistics(); stats = m_docinfo->getStatistics();
fillWidget(stats,summary); fillWidget(stats,summary);
} }
else // active doc belongs to a project else // active doc belongs to a project
{ {
setCaption(i18n("Statistics for the Project %1").tqarg(m_project->name())); setCaption(i18n("Statistics for the Project %1").arg(m_project->name()));
KILE_DEBUG() << "Project file is " << project->baseURL() << endl; KILE_DEBUG() << "Project file is " << project->baseURL() << endl;
KileProjectItemList *items = project->items(); KileProjectItemList *items = project->items();
@ -169,11 +169,11 @@ void KileStatsDlg::convertText(TQString* text, bool forLaTeX) // the bool determ
text->append("\\begin{tabular}{ll}\n"); text->append("\\begin{tabular}{ll}\n");
if(m_project && activePageIndex()) if(m_project && activePageIndex())
text->append(i18n("Statistics for project %1, file %2").tqarg(m_project->name()).tqarg(name)); text->append(i18n("Statistics for project %1, file %2").arg(m_project->name()).arg(name));
else if(m_project) else if(m_project)
text->append(i18n("Statistics for project %1").tqarg(m_project->name())); text->append(i18n("Statistics for project %1").arg(m_project->name()));
else if(m_docinfo->getDoc()->url().isValid()) else if(m_docinfo->getDoc()->url().isValid())
text->append(i18n("Statistics for %1").tqarg(m_docinfo->getDoc()->url().fileName())); text->append(i18n("Statistics for %1").arg(m_docinfo->getDoc()->url().fileName()));
else else
text->append(i18n("Statistics for Untitled")); text->append(i18n("Statistics for Untitled"));

@ -82,7 +82,7 @@ void setupStdTags(KileInfo *ki, KMainWindow *parent)
new KileAction::Tag("\\item","item",TQt::ALT+TQt::SHIFT+TQt::Key_H, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), parent->actionCollection(),"tag_item","\\item ",TQString(),6,0, i18n("\\item[label] Hello!")); new KileAction::Tag("\\item","item",TQt::ALT+TQt::SHIFT+TQt::Key_H, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), parent->actionCollection(),"tag_item","\\item ",TQString(),6,0, i18n("\\item[label] Hello!"));
(void) new KileAction::Tag(i18n("Tabbing - \\begin{tabbing}"),"tabbing",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), parent->actionCollection(),"tag_env_tabbing" ,"\\begin{tabbing}\n","%E\n\\end{tabbing} ",0,1,i18n("The tabbing environment provides a way to align text in columns.\n\\begin{tabbing}\ntext \\= more text \\= still more text \\= last text \\\\\nsecond row \\> \\> more \\\\\n\\end{tabbing}\nCommands :\n\\= Sets a tab stop at the current position.\n\\> Advances to the next tab stop.\n\\< Allows you to put something to the left of the local margin without changing the margin. Can only be used at the start of the line.\n\\+ Moves the left margin of the next and all the following commands one tab stop to the right\n\\- Moves the left margin of the next and all the following commands one tab stop to the left\n\\' Moves everything that you have typed so far in the current column to the right of the previous column, flush against the current column's tab stop. \n\\` Allows you to put text flush right against any tab stop, including tab stop 0\n\\kill Sets tab stops without producing text.\n\\a In a tabbing environment, the commands \\=, \\' and \\` do not produce accents as normal. Instead, the commands \\a=, \\a' and \\a` are used.")); (void) new KileAction::Tag(i18n("Tabbing - \\begin{tabbing}"),"tabbing",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), parent->actionCollection(),"tag_env_tabbing" ,"\\begin{tabbing}\n","%E\n\\end{tabbing} ",0,1,i18n("The tabbing environment provides a way to align text in columns.\n\\begin{tabbing}\ntext \\= more text \\= still more text \\= last text \\\\\nsecond row \\> \\> more \\\\\n\\end{tabbing}\nCommands :\n\\= Sets a tab stop at the current position.\n\\> Advances to the next tab stop.\n\\< Allows you to put something to the left of the local margin without changing the margin. Can only be used at the start of the line.\n\\+ Moves the left margin of the next and all the following commands one tab stop to the right\n\\- Moves the left margin of the next and all the following commands one tab stop to the left\n\\' Moves everything that you have typed so far in the current column to the right of the previous column, flush against the current column's tab stop. \n\\` Allows you to put text flush right against any tab stop, including tab stop 0\n\\kill Sets tab stops without producing text.\n\\a In a tabbing environment, the commands \\=, \\' and \\` do not produce accents as normal. Instead, the commands \\a=, \\a' and \\a` are used."));
(void) new KileAction::Tag("Tabular - \\begin{tabular}","tabular",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), parent->actionCollection(),"tag_env_tabular" ,"\\begin{tabular}{","}\n%E\n\\end{tabular} ",16,0,i18n("\\begin{tabular}[pos]{cols}\ncolumn 1 entry & column 2 entry ... & column n entry \\\\\n...\n\\end{tabular}\npos : Specifies the vertical position; default is tqalignment on the center of the environment.\n t - align on top row\n b - align on bottom row\ncols : Specifies the column formatting.\n l - A column of left-aligned items.\n r - A column of right-aligned items.\n c - A column of centered items.\n | - A vertical line the full height and depth of the environment.\n @{text} - this inserts text in every row.\nThe \\hline command draws a horizontal line the width of the table.\nThe \\cline{i-j} command draws horizontal lines across the columns specified, beginning in column i and ending in column j,\nThe \\vline command draws a vertical line extending the full height and depth of its row.")); (void) new KileAction::Tag("Tabular - \\begin{tabular}","tabular",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), parent->actionCollection(),"tag_env_tabular" ,"\\begin{tabular}{","}\n%E\n\\end{tabular} ",16,0,i18n("\\begin{tabular}[pos]{cols}\ncolumn 1 entry & column 2 entry ... & column n entry \\\\\n...\n\\end{tabular}\npos : Specifies the vertical position; default is alignment on the center of the environment.\n t - align on top row\n b - align on bottom row\ncols : Specifies the column formatting.\n l - A column of left-aligned items.\n r - A column of right-aligned items.\n c - A column of centered items.\n | - A vertical line the full height and depth of the environment.\n @{text} - this inserts text in every row.\nThe \\hline command draws a horizontal line the width of the table.\nThe \\cline{i-j} command draws horizontal lines across the columns specified, beginning in column i and ending in column j,\nThe \\vline command draws a vertical line extending the full height and depth of its row."));
(void) new KileAction::Tag("Multicolumn Cells - \\multicolumn","multicolumn",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)),parent->actionCollection(),"tag_multicolumn","\\multicolumn{","}{}{} ",13,0,i18n("\\multicolumn{cols}{pos}{text}\ncol, specifies the number of columns to span.\npos specifies the formatting of the entry: c for centered, l for flushleft, r for flushright.\ntext specifies what text is to make up the entry.")); (void) new KileAction::Tag("Multicolumn Cells - \\multicolumn","multicolumn",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)),parent->actionCollection(),"tag_multicolumn","\\multicolumn{","}{}{} ",13,0,i18n("\\multicolumn{cols}{pos}{text}\ncol, specifies the number of columns to span.\npos specifies the formatting of the entry: c for centered, l for flushleft, r for flushright.\ntext specifies what text is to make up the entry."));
(void) new KileAction::Tag(i18n("Horizontal Line - \\hline"),"hline",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), parent->actionCollection(),"tag_hline" ,"\\hline ",TQString(),7,0,i18n("The \\hline command draws a horizontal line the width of the table.")); (void) new KileAction::Tag(i18n("Horizontal Line - \\hline"),"hline",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), parent->actionCollection(),"tag_hline" ,"\\hline ",TQString(),7,0,i18n("The \\hline command draws a horizontal line the width of the table."));
(void) new KileAction::Tag(i18n("Vertical Line - \\vline"),"vline",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), parent->actionCollection(),"tag_vline" ,"\\vline ",TQString(),7,0,i18n("The \\vline command draws a vertical line extending the full height and depth of its row.")); (void) new KileAction::Tag(i18n("Vertical Line - \\vline"),"vline",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), parent->actionCollection(),"tag_vline" ,"\\vline ",TQString(),7,0,i18n("The \\vline command draws a vertical line extending the full height and depth of its row."));
@ -209,10 +209,10 @@ void setupStdTags(KileInfo *ki, KMainWindow *parent)
(void) new KileAction::Tag("Medium - \\mdseries",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_mdseries", "\\mdseries", TQString(), 9); (void) new KileAction::Tag("Medium - \\mdseries",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_mdseries", "\\mdseries", TQString(), 9);
(void) new KileAction::Tag("Bold - \\bfseries",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_bfseries", "\\bfseries", TQString(), 9); (void) new KileAction::Tag("Bold - \\bfseries",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_bfseries", "\\bfseries", TQString(), 9);
(void) new KileAction::Tag("Upright - \\uptqshape",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_uptqshape", "\\uptqshape", TQString(), 8); (void) new KileAction::Tag("Upright - \\upshape",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_upshape", "\\upshape", TQString(), 8);
(void) new KileAction::Tag("Italic - \\ittqshape",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_ittqshape", "\\ittqshape", TQString(), 8); (void) new KileAction::Tag("Italic - \\itshape",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_itshape", "\\itshape", TQString(), 8);
(void) new KileAction::Tag("Slanted - \\sltqshape",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_sltqshape", "\\sltqshape", TQString(), 8); (void) new KileAction::Tag("Slanted - \\slshape",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_slshape", "\\slshape", TQString(), 8);
(void) new KileAction::Tag("Smallcaps - \\sctqshape",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_sctqshape", "\\sctqshape", TQString(), 8); (void) new KileAction::Tag("Smallcaps - \\scshape",0, TQT_TQOBJECT(parent), TQT_SLOT(insertTag(const KileAction::TagData&)), ac,"tag_scshape", "\\scshape", TQString(), 8);
} }

@ -382,7 +382,7 @@ namespace KileTool
if ( !read1 && !read2 ) if ( !read1 && !read2 )
{ {
sendMessage(Error, i18n("Unable to find %1 or %2; if you are trying to view some other HTML file, go to Settings->Configure Kile->Tools->ViewHTML->Advanced.").tqarg(file1.absFilePath()).tqarg(file2.absFilePath())); sendMessage(Error, i18n("Unable to find %1 or %2; if you are trying to view some other HTML file, go to Settings->Configure Kile->Tools->ViewHTML->Advanced.").arg(file1.absFilePath()).arg(file2.absFilePath()));
return false; return false;
} }

@ -402,8 +402,8 @@ namespace KileWidget
/* some items have a special action: /* some items have a special action:
- KileStruct::Sect: - KileStruct::Sect:
The new item is saved in m_lastSectioning, so that all following entries The new item is saved in m_lastSectioning, so that all following entries
can be inserted as tqchildren. \part will drop back to level 0 of the Listview, can be inserted as children. \part will drop back to level 0 of the Listview,
all other sectioning commands will be tqchildren of the last sectioning item. all other sectioning commands will be children of the last sectioning item.
If a \label command follows in the same or the next line, it is assigned If a \label command follows in the same or the next line, it is assigned
to this item. to this item.
- KileStruct::BeginFloat: - KileStruct::BeginFloat:
@ -714,7 +714,7 @@ namespace KileWidget
} }
} }
else{ else{
if ( KMessageBox::warningYesNo(this, i18n("Cannot find the included file. The file does not exist, is not readable or Kile is unable to determine the correct path to it. The filename causing this error was: %1.\nDo you want to create this file?").tqarg(fname), i18n("Cannot Find File")) if ( KMessageBox::warningYesNo(this, i18n("Cannot find the included file. The file does not exist, is not readable or Kile is unable to determine the correct path to it. The filename causing this error was: %1.\nDo you want to create this file?").arg(fname), i18n("Cannot Find File"))
== KMessageBox::Yes) == KMessageBox::Yes)
{ {
emit(fileNew(url)); emit(fileNew(url));

@ -211,7 +211,7 @@ namespace KileTool
//Is there an active document? Only check if the source file is not explicitly set. //Is there an active document? Only check if the source file is not explicitly set.
if ( (m_source.isNull()) && (m_manager->info()->activeTextDocument() == 0L) ) if ( (m_source.isNull()) && (m_manager->info()->activeTextDocument() == 0L) )
{ {
sendMessage(Error, msg(NeedActiveDoc).tqarg(name())); sendMessage(Error, msg(NeedActiveDoc).arg(name()));
return false; return false;
} }
@ -234,13 +234,13 @@ namespace KileTool
TQFileInfo fi(source()); TQFileInfo fi(source());
if ( (flags() & NeedSourceExists) && !fi.exists() ) if ( (flags() & NeedSourceExists) && !fi.exists() )
{ {
sendMessage(Error, msg(NeedSourceExists).tqarg(fi.absFilePath())); sendMessage(Error, msg(NeedSourceExists).arg(fi.absFilePath()));
return false; return false;
} }
if ( (flags() & NeedSourceRead) && !fi.isReadable() ) if ( (flags() & NeedSourceRead) && !fi.isReadable() )
{ {
sendMessage(Error, msg(NeedSourceRead).tqarg(fi.absFilePath())); sendMessage(Error, msg(NeedSourceRead).arg(fi.absFilePath()));
return false; return false;
} }
@ -324,13 +324,13 @@ namespace KileTool
if ( (flags() & NeedTargetDirExec ) && (! info.isExecutable()) ) if ( (flags() & NeedTargetDirExec ) && (! info.isExecutable()) )
{ {
sendMessage(Error, msg(NeedTargetDirExec).tqarg(m_targetdir)); sendMessage(Error, msg(NeedTargetDirExec).arg(m_targetdir));
return false; return false;
} }
if ((flags() & NeedTargetDirWrite) && (! info.isWritable()) ) if ((flags() & NeedTargetDirWrite) && (! info.isWritable()) )
{ {
sendMessage(Error, msg(NeedTargetDirWrite).tqarg(m_targetdir).tqarg(m_name)); sendMessage(Error, msg(NeedTargetDirWrite).arg(m_targetdir).arg(m_name));
return false; return false;
} }
@ -338,13 +338,13 @@ namespace KileTool
if ( (flags() & NeedTargetExists) && ( ! info.exists() )) if ( (flags() & NeedTargetExists) && ( ! info.exists() ))
{ {
sendMessage(Error, msg(NeedTargetExists).tqarg(m_targetdir).tqarg(m_target)); sendMessage(Error, msg(NeedTargetExists).arg(m_targetdir).arg(m_target));
return false; return false;
} }
if ( (flags() & NeedTargetRead) && ( ! info.isReadable() )) if ( (flags() & NeedTargetRead) && ( ! info.isReadable() ))
{ {
sendMessage(Error, msg(NeedTargetRead).tqarg(m_targetdir).tqarg(m_target)); sendMessage(Error, msg(NeedTargetRead).arg(m_targetdir).arg(m_target));
return false; return false;
} }
@ -543,7 +543,7 @@ namespace KileTool
if (!isRoot) if (!isRoot)
{ {
return manager()->queryContinue(i18n("The document %1 is not a LaTeX root document; continue anyway?").tqarg(source()), i18n("Continue?")); return manager()->queryContinue(i18n("The document %1 is not a LaTeX root document; continue anyway?").arg(source()), i18n("Continue?"));
} }
return true; return true;
@ -662,7 +662,7 @@ namespace KileTool
} }
else else
{ {
sendMessage(Error, i18n("Unknown tool %1.").tqarg(tools[i])); sendMessage(Error, i18n("Unknown tool %1.").arg(tools[i]));
emit(done(this, Failed)); emit(done(this, Failed));
return ConfigureFailed; return ConfigureFailed;
} }

@ -236,7 +236,7 @@ namespace KileWidget
if (szHint.height() > 0) if (szHint.height() > 0)
m_configWidget->m_stackExtra->setMaximumHeight(szHint.height()); m_configWidget->m_stackExtra->setMaximumHeight(szHint.height());
} }
m_configWidget->tqlayout()->tqinvalidate(); m_configWidget->tqlayout()->invalidate();
} }
void ToolConfig::writeDefaults() void ToolConfig::writeDefaults()
@ -442,7 +442,7 @@ namespace KileWidget
void ToolConfig::removeTool() void ToolConfig::removeTool()
{ {
//KILE_DEBUG() << "==ToolConfig::removeTool()=====================" << endl; //KILE_DEBUG() << "==ToolConfig::removeTool()=====================" << endl;
if ( KMessageBox::warningContinueCancel(this, i18n("Are you sure you want to remove the tool %1?").tqarg(m_current)) == KMessageBox::Continue ) if ( KMessageBox::warningContinueCancel(this, i18n("Are you sure you want to remove the tool %1?").arg(m_current)) == KMessageBox::Continue )
{ {
KConfig *config = m_config; KConfig *config = m_config;
TQStringList cfgs = KileTool::configNames(m_current, config); TQStringList cfgs = KileTool::configNames(m_current, config);

@ -146,7 +146,7 @@ namespace KileTool
Base* pTool = m_factory->create(tool); Base* pTool = m_factory->create(tool);
if (!pTool) if (!pTool)
{ {
m_log->printMsg(Error, i18n("Unknown tool %1.").tqarg(tool)); m_log->printMsg(Error, i18n("Unknown tool %1.").arg(tool));
return ConfigureFailed; return ConfigureFailed;
} }
@ -369,7 +369,7 @@ namespace KileTool
if ( ! retrieveEntryMap(tool->name(), map, true, true, cfg) ) if ( ! retrieveEntryMap(tool->name(), map, true, true, cfg) )
{ {
m_log->printMsg(Error, i18n("Cannot find the tool %1 in the configuration database.").tqarg(tool->name())); m_log->printMsg(Error, i18n("Cannot find the tool %1 in the configuration database.").arg(tool->name()));
return false; return false;
} }

@ -405,7 +405,7 @@ TQString LatexCommands::configString(LatexCmdAttributes &attr,bool env)
TQChar ch = getAttrChar( attr.type ); TQChar ch = getAttrChar( attr.type );
if ( ch == '?' ) if ( ch == '?' )
return TQString(); return TQString();
TQString s = TQString("%1,").tqarg(ch); TQString s = TQString("%1,").arg(ch);
// all environments/commands have starred attribute // all environments/commands have starred attribute
if ( attr.starred ) if ( attr.starred )

@ -143,7 +143,7 @@ NewLatexCommand::NewLatexCommand(TQWidget *parent, const TQString &caption,
{ {
m_coOption->insertItem("[tcb]"); m_coOption->insertItem("[tcb]");
m_coOption->insertItem("[lcr]"); m_coOption->insertItem("[lcr]");
TQWhatsThis::add(m_coOption,i18n("Define an optional tqalignment parameter.")); TQWhatsThis::add(m_coOption,i18n("Define an optional alignment parameter."));
} }
else else
{ {
@ -757,7 +757,7 @@ void LatexCommandsDialog::slotUserDefinedClicked()
void LatexCommandsDialog::slotHelp() void LatexCommandsDialog::slotHelp()
{ {
TQString mode = ( getListviewMode() == lvEnvMode ) ? i18n("'environment'") : i18n("'command'"); TQString mode = ( getListviewMode() == lvEnvMode ) ? i18n("'environment'") : i18n("'command'");
if ( KMessageBox::warningContinueCancel(this, i18n("All your %1 settings will be overwritten with the default settings, are you sure you want to continue?").tqarg(mode)) == KMessageBox::Continue ) if ( KMessageBox::warningContinueCancel(this, i18n("All your %1 settings will be overwritten with the default settings, are you sure you want to continue?").arg(mode)) == KMessageBox::Continue )
{ {
if ( getListviewMode() == lvEnvMode ) if ( getListviewMode() == lvEnvMode )
resetEnvironments(); resetEnvironments();
@ -820,7 +820,7 @@ void LatexCommandsDialog::writeConfig(KListView *listview, const TQString &group
continue; continue;
} }
// look for tqchildren // look for children
for ( TQListViewItem *curchild=cur->firstChild(); curchild; curchild=curchild->nextSibling() ) for ( TQListViewItem *curchild=cur->firstChild(); curchild; curchild=curchild->nextSibling() )
{ {
TQString key = curchild->text(0); TQString key = curchild->text(0);

@ -638,7 +638,7 @@ void LatexOutputFilter::sendProblems()
//print detailed error info //print detailed error info
for(unsigned int i=0; i < m_InfoList->count(); ++i) { for(unsigned int i=0; i < m_InfoList->count(); ++i) {
Message = TQString("%1:%2:%3").tqarg((*m_InfoList)[i].source()).tqarg((*m_InfoList)[i].sourceLine()).tqarg((*m_InfoList)[i].message()); Message = TQString("%1:%2:%3").arg((*m_InfoList)[i].source()).arg((*m_InfoList)[i].sourceLine()).arg((*m_InfoList)[i].message());
switch ( (*m_InfoList)[i].type() ) switch ( (*m_InfoList)[i].type() )
{ {
case LatexOutputInfo::itmBadBox : type = KileTool::ProblemBadBox; break; case LatexOutputInfo::itmBadBox : type = KileTool::ProblemBadBox; break;

@ -71,7 +71,7 @@ ManageTemplatesDialog::ManageTemplatesDialog(KileTemplate::Manager *templateMana
m_nameEdit = new KLineEdit(fileName, page); m_nameEdit = new KLineEdit(fileName, page);
nameLayout->addWidget(m_nameEdit); nameLayout->addWidget(m_nameEdit);
nameLayout->addWidget(new TQLabel(i18n("Type: %1").tqarg(KileInfo::documentTypeToString(m_templateType)), page)); nameLayout->addWidget(new TQLabel(i18n("Type: %1").arg(KileInfo::documentTypeToString(m_templateType)), page));
TQHBoxLayout *iconLayout = new TQHBoxLayout(topLayout, spacingHint()); TQHBoxLayout *iconLayout = new TQHBoxLayout(topLayout, spacingHint());
iconLayout->addWidget(new TQLabel(i18n("Icon:"), page)); iconLayout->addWidget(new TQLabel(i18n("Icon:"), page));
@ -210,19 +210,19 @@ void ManageTemplatesDialog::addTemplate() {
} }
if (!KIO::NetAccess::exists(iconURL, true, kapp->mainWidget())) { if (!KIO::NetAccess::exists(iconURL, true, kapp->mainWidget())) {
KMessageBox::error(this, i18n("Sorry, but the icon file: %1\ndoes not seem to exist. Please choose a new icon.").tqarg(icon)); KMessageBox::error(this, i18n("Sorry, but the icon file: %1\ndoes not seem to exist. Please choose a new icon.").arg(icon));
return; return;
} }
if (!KIO::NetAccess::exists(m_sourceURL, true, kapp->mainWidget())) { if (!KIO::NetAccess::exists(m_sourceURL, true, kapp->mainWidget())) {
KMessageBox::error(this, i18n("Sorry, but the file: %1\ndoes not seem to exist. Maybe you forgot to save the file?").tqarg(m_sourceURL.prettyURL())); KMessageBox::error(this, i18n("Sorry, but the file: %1\ndoes not seem to exist. Maybe you forgot to save the file?").arg(m_sourceURL.prettyURL()));
return; return;
} }
TQListViewItem* item = m_templateList->selectedItem(); TQListViewItem* item = m_templateList->selectedItem();
if(!item && m_templateManager->searchForTemplate(templateName, m_templateType)) { if(!item && m_templateManager->searchForTemplate(templateName, m_templateType)) {
KMessageBox::error(this, i18n("Sorry, but a template named \"%1\" already exists.\nPlease remove it first.").tqarg(templateName)); KMessageBox::error(this, i18n("Sorry, but a template named \"%1\" already exists.\nPlease remove it first.").arg(templateName));
return; return;
} }
@ -231,7 +231,7 @@ void ManageTemplatesDialog::addTemplate() {
TemplateListViewItem *templateItem = dynamic_cast<TemplateListViewItem*>(item); TemplateListViewItem *templateItem = dynamic_cast<TemplateListViewItem*>(item);
Q_ASSERT(templateItem); Q_ASSERT(templateItem);
KileTemplate::Info templateInfo = templateItem->getTemplateInfo(); KileTemplate::Info templateInfo = templateItem->getTemplateInfo();
if (KMessageBox::warningYesNo(this, i18n("You are about to replace the template \"%1\"; are you sure?").tqarg(templateInfo.name)) == KMessageBox::No) { if (KMessageBox::warningYesNo(this, i18n("You are about to replace the template \"%1\"; are you sure?").arg(templateInfo.name)) == KMessageBox::No) {
reject(); reject();
return; return;
} }
@ -266,7 +266,7 @@ bool ManageTemplatesDialog::removeTemplate()
return false; return false;
} }
if (KMessageBox::warningYesNo(this, i18n("You are about to remove the template \"%1\"; are you sure?").tqarg(templateInfo.name)) == KMessageBox::No) { if (KMessageBox::warningYesNo(this, i18n("You are about to remove the template \"%1\"; are you sure?").arg(templateInfo.name)) == KMessageBox::No) {
return false; return false;
} }

@ -125,8 +125,8 @@ MathEnvironmentDialog::MathEnvironmentDialog(TQWidget *parent, KConfig *config,
TQWhatsThis::add(m_coEnvironment,i18n("Choose an environment.")); TQWhatsThis::add(m_coEnvironment,i18n("Choose an environment."));
TQWhatsThis::add(m_cbStarred,i18n("Use the starred version of this environment.")); TQWhatsThis::add(m_cbStarred,i18n("Use the starred version of this environment."));
TQWhatsThis::add(m_spRows,i18n("Choose the number of table rows.")); TQWhatsThis::add(m_spRows,i18n("Choose the number of table rows."));
TQWhatsThis::add(m_spCols,i18n("Choose the number of table columns or tqalignment groups.")); TQWhatsThis::add(m_spCols,i18n("Choose the number of table columns or alignment groups."));
TQWhatsThis::add(m_edSpace,i18n("Define an extra LaTeX command to separate tqalignment groups.")); TQWhatsThis::add(m_edSpace,i18n("Define an extra LaTeX command to separate alignment groups."));
TQWhatsThis::add(m_coTabulator,i18n("Choose one of some predefined tabulators.")); TQWhatsThis::add(m_coTabulator,i18n("Choose one of some predefined tabulators."));
TQWhatsThis::add(m_coDisplaymath,i18n("Some environments are only valid in math mode. You can surround them with one of these display math modes.")); TQWhatsThis::add(m_coDisplaymath,i18n("Some environments are only valid in math mode. You can surround them with one of these display math modes."));
TQWhatsThis::add(m_cbBullets,i18n("Insert bullets in each cell. Alt+Ctrl+Right and Alt+Ctrl+Left will move very quick from one cell to another.")); TQWhatsThis::add(m_cbBullets,i18n("Insert bullets in each cell. Alt+Ctrl+Right and Alt+Ctrl+Left will move very quick from one cell to another."));
@ -318,8 +318,8 @@ void MathEnvironmentDialog::slotOk()
} }
else else
{ {
displaymathbegin = TQString("\\begin{%1}\n").tqarg(mathmode); displaymathbegin = TQString("\\begin{%1}\n").arg(mathmode);
displaymathend = TQString("\\end{%1}\n").tqarg(mathmode); displaymathend = TQString("\\end{%1}\n").arg(mathmode);
} }
} }
} }
@ -329,12 +329,12 @@ void MathEnvironmentDialog::slotOk()
TQString parameter; TQString parameter;
if ( isGroupsParameterEnv() ) if ( isGroupsParameterEnv() )
parameter = TQString("{%2}").tqarg(numgroups); parameter = TQString("{%2}").arg(numgroups);
else if ( isParameterEnv() ) else if ( isParameterEnv() )
parameter = '{' + bullet + '}'; parameter = '{' + bullet + '}';
// open environment // open environment
m_td.tagBegin += TQString("\\begin{%1}").tqarg(envname) + parameter + '\n'; m_td.tagBegin += TQString("\\begin{%1}").arg(envname) + parameter + '\n';
for ( int row=0; row<numrows; ++row ) for ( int row=0; row<numrows; ++row )
{ {
@ -359,7 +359,7 @@ void MathEnvironmentDialog::slotOk()
} }
// close environment // close environment
m_td.tagEnd = TQString("\n\\end{%1}\n").tqarg(envname); m_td.tagEnd = TQString("\n\\end{%1}\n").arg(envname);
m_td.tagEnd += displaymathend; m_td.tagEnd += displaymathend;
m_td.dy = ( displaymathbegin.isEmpty() ) ? 1 : 2; m_td.dy = ( displaymathbegin.isEmpty() ) ? 1 : 2;

@ -518,7 +518,7 @@ bool PostscriptDialog::checkParameter()
} }
if ( infile!=outfile && fo.exists() ) { if ( infile!=outfile && fo.exists() ) {
TQString s = i18n("A file named \"%1\" already exists. Are you sure you want to overwrite it?").tqarg(fo.fileName()); TQString s = i18n("A file named \"%1\" already exists. Are you sure you want to overwrite it?").arg(fo.fileName());
if ( KMessageBox::questionYesNo( this, if ( KMessageBox::questionYesNo( this,
"<center>" + s + "</center>", "<center>" + s + "</center>",
"Postscript tools" ) == KMessageBox::No ) { "Postscript tools" ) == KMessageBox::No ) {

@ -74,7 +74,7 @@ KileWidgetPreviewConfig::KileWidgetPreviewConfig(KConfig *config, KileTool::Quic
TQString tool1 = i18n("dvi --> png") + sep + i18n("(uses dvipng)"); TQString tool1 = i18n("dvi --> png") + sep + i18n("(uses dvipng)");
TQString tool2 = i18n("dvi --> ps --> png") + sep + i18n("(uses dvips/convert)"); TQString tool2 = i18n("dvi --> ps --> png") + sep + i18n("(uses dvips/convert)");
TQString tool3 = i18n("pdf --> png") + sep + i18n("(uses convert)"); TQString tool3 = i18n("pdf --> png") + sep + i18n("(uses convert)");
TQString description = TQString("%1:<ul><li>%2<li>%3<li>%4</ul>").tqarg(title).tqarg(tool1).tqarg(tool2).tqarg(tool3); TQString description = TQString("%1:<ul><li>%2<li>%3<li>%4</ul>").arg(title).arg(tool1).arg(tool2).arg(tool3);
TQLabel *labelDescription = new TQLabel(description, gbResolution); TQLabel *labelDescription = new TQLabel(description, gbResolution);
TQLabel *labelDvipng = new TQLabel(i18n("dvipng:"), gbResolution); TQLabel *labelDvipng = new TQLabel(i18n("dvipng:"), gbResolution);

@ -113,7 +113,7 @@ void PreviewWidget::showActivePreview(const TQString &text,const TQString &textf
KileTool::Base *pngConverter = m_info->toolFactory()->create(tool); KileTool::Base *pngConverter = m_info->toolFactory()->create(tool);
if ( ! pngConverter ) if ( ! pngConverter )
{ {
showError( TQString(i18n("Could not run '%1' for QuickPreview.").tqarg(tool)) ); showError( TQString(i18n("Could not run '%1' for QuickPreview.").arg(tool)) );
return; return;
} }
pngConverter->setSource(m_info->quickPreview()->getPreviewFile(extension)); pngConverter->setSource(m_info->quickPreview()->getPreviewFile(extension));
@ -160,7 +160,7 @@ void PreviewWidget::drawImage()
m_previewImage = new TQImage (m_info->quickPreview()->getPreviewFile ("png")); m_previewImage = new TQImage (m_info->quickPreview()->getPreviewFile ("png"));
setFixedSize( m_previewImage->width()+6,m_previewImage->height()+6 ); setFixedSize( m_previewImage->width()+6,m_previewImage->height()+6 );
tqrepaint (); repaint ();
} }
void PreviewWidget::toolDestroyed() void PreviewWidget::toolDestroyed()

@ -102,7 +102,7 @@ public:
EditableCheckListItem(TQCheckListItem *parent, const TQString &text); EditableCheckListItem(TQCheckListItem *parent, const TQString &text);
virtual void paintCell(TQPainter *p, const TQColorGroup &cg, virtual void paintCell(TQPainter *p, const TQColorGroup &cg,
int column, int width, int tqalignment ); int column, int width, int alignment );
}; };
EditableCheckListItem::EditableCheckListItem(TQCheckListItem *parent, const TQString &text) EditableCheckListItem::EditableCheckListItem(TQCheckListItem *parent, const TQString &text)
@ -111,7 +111,7 @@ EditableCheckListItem::EditableCheckListItem(TQCheckListItem *parent, const TQSt
} }
void EditableCheckListItem::paintCell( TQPainter *p, const TQColorGroup &cg, void EditableCheckListItem::paintCell( TQPainter *p, const TQColorGroup &cg,
int column, int width, int tqalignment ) int column, int width, int alignment )
{ {
if ( column == 1) { if ( column == 1) {
TQColorGroup colorgroup( cg ); TQColorGroup colorgroup( cg );
@ -123,7 +123,7 @@ void EditableCheckListItem::paintCell( TQPainter *p, const TQColorGroup &cg,
} }
TQCheckListItem::paintCell( p, colorgroup, column, width, TQt::AlignHCenter ); TQCheckListItem::paintCell( p, colorgroup, column, width, TQt::AlignHCenter );
} else { } else {
TQCheckListItem::paintCell( p, cg, column, width, tqalignment ); TQCheckListItem::paintCell( p, cg, column, width, alignment );
} }
} }
@ -971,7 +971,7 @@ bool QuickDocument::addComboboxEntries(KComboBox *combo, const TQString &title,c
TQString s = list[i].stripWhiteSpace(); TQString s = list[i].stripWhiteSpace();
// entries must match a regular expression // entries must match a regular expression
if ( combolist.findIndex(s) != -1 ) if ( combolist.findIndex(s) != -1 )
KMessageBox::error( this, i18n("%1 '%2' already exists.").tqarg(title).tqarg(s) ); KMessageBox::error( this, i18n("%1 '%2' already exists.").arg(title).arg(s) );
else { else {
combolist += s; combolist += s;
KILE_DEBUG() << "\tinsert new " << title << ": " << s << endl; KILE_DEBUG() << "\tinsert new " << title << ": " << s << endl;
@ -1258,7 +1258,7 @@ void QuickDocument::writePackagesConfig()
// write listview entry // write listview entry
m_config->writeEntry(cur->text(0),packageentry); m_config->writeEntry(cur->text(0),packageentry);
// look for tqchildren // look for children
for (TQListViewItem *curchild=cur->firstChild(); curchild; curchild=curchild->nextSibling()) { for (TQListViewItem *curchild=cur->firstChild(); curchild; curchild=curchild->nextSibling()) {
// add child to packages list // add child to packages list
TQString option = cur->text(0) + '!' + curchild->text(0); TQString option = cur->text(0) + '!' + curchild->text(0);
@ -1374,7 +1374,7 @@ bool QuickDocument::isListviewChild(TQListView *listview,const TQString &entry,
for ( TQListViewItem *cur=listview->firstChild(); cur; cur=cur->nextSibling() ) { for ( TQListViewItem *cur=listview->firstChild(); cur; cur=cur->nextSibling() ) {
// look for the main entry // look for the main entry
if ( cur->text(0) == entry ) { if ( cur->text(0) == entry ) {
// look for tqchildren // look for children
for (TQListViewItem *curchild=cur->firstChild(); curchild; curchild=curchild->nextSibling()) { for (TQListViewItem *curchild=cur->firstChild(); curchild; curchild=curchild->nextSibling()) {
if ( option == curchild->text(0) ) if ( option == curchild->text(0) )
return true; return true;
@ -1701,7 +1701,7 @@ void QuickDocument::slotDocumentClassDelete()
TQString documentclass = m_cbDocumentClass->currentText(); TQString documentclass = m_cbDocumentClass->currentText();
KILE_DEBUG() << "==QuickDocument::slotDocumentClassDelete()============" << endl; KILE_DEBUG() << "==QuickDocument::slotDocumentClassDelete()============" << endl;
if (KMessageBox::warningContinueCancel(this, i18n("Do you want to remove \"%1\" from the document class list?").tqarg(documentclass), i18n("Remove Document Class"))==KMessageBox::Continue) if (KMessageBox::warningContinueCancel(this, i18n("Do you want to remove \"%1\" from the document class list?").arg(documentclass), i18n("Remove Document Class"))==KMessageBox::Continue)
{ {
KILE_DEBUG() << "\tlazy delete class: " << documentclass << endl; KILE_DEBUG() << "\tlazy delete class: " << documentclass << endl;
@ -1769,7 +1769,7 @@ void QuickDocument::slotTypefaceSizeAdd()
void QuickDocument::slotTypefaceSizeDelete() void QuickDocument::slotTypefaceSizeDelete()
{ {
if (KMessageBox::warningContinueCancel(this, i18n("Do you want to remove \"%1\" from the fontsize list?").tqarg(m_cbPaperSize->currentText()), i18n("Remove Fontsize"))==KMessageBox::Continue) if (KMessageBox::warningContinueCancel(this, i18n("Do you want to remove \"%1\" from the fontsize list?").arg(m_cbPaperSize->currentText()), i18n("Remove Fontsize"))==KMessageBox::Continue)
{ {
int i=m_cbPaperSize->currentItem(); int i=m_cbPaperSize->currentItem();
m_cbPaperSize->removeItem(i); m_cbPaperSize->removeItem(i);
@ -1800,7 +1800,7 @@ void QuickDocument::slotPaperSizeAdd()
void QuickDocument::slotPaperSizeDelete() void QuickDocument::slotPaperSizeDelete()
{ {
if (KMessageBox::warningContinueCancel(this, i18n("Do you want to remove \"%1\" from the papersize list?").tqarg(m_cbPaperSize->currentText()), i18n("Remove Papersize"))==KMessageBox::Continue) if (KMessageBox::warningContinueCancel(this, i18n("Do you want to remove \"%1\" from the papersize list?").arg(m_cbPaperSize->currentText()), i18n("Remove Papersize"))==KMessageBox::Continue)
{ {
int i=m_cbPaperSize->currentItem(); int i=m_cbPaperSize->currentItem();
m_cbPaperSize->removeItem(i); m_cbPaperSize->removeItem(i);
@ -2249,7 +2249,7 @@ bool QuickDocumentInputDialog::checkListEntries(const TQString &title, const TQS
// entries must match a regular expression // entries must match a regular expression
TQRegExp reg(pattern); TQRegExp reg(pattern);
if ( ! reg.exactMatch(s) ) { if ( ! reg.exactMatch(s) ) {
KMessageBox::error( this, i18n("%1 '%2' is not allowed.").tqarg(title).tqarg(s) ); KMessageBox::error( this, i18n("%1 '%2' is not allowed.").arg(title).arg(s) );
return false; return false;
} }
} }

@ -179,7 +179,7 @@ bool QuickPreview::run(const TQString &text,const TQString &textfilename,int sta
TQString previewtask = KileConfig::previewTask(); TQString previewtask = KileConfig::previewTask();
if ( ! map.contains(previewtask) ) if ( ! map.contains(previewtask) )
{ {
showError(TQString(i18n("Could not run QuickPreview:\nunknown task '%1'").tqarg(previewtask))); showError(TQString(i18n("Could not run QuickPreview:\nunknown task '%1'").arg(previewtask)));
return false; return false;
} }
@ -226,7 +226,7 @@ bool QuickPreview::run(const TQString &text,const TQString &textfilename,int sta
KileTool::PreviewLaTeX *latex = (KileTool::PreviewLaTeX *)m_ki->toolFactory()->create(previewlist[pvLatex],false); KileTool::PreviewLaTeX *latex = (KileTool::PreviewLaTeX *)m_ki->toolFactory()->create(previewlist[pvLatex],false);
if ( !latex ) if ( !latex )
{ {
showError(TQString(i18n("Could not run '%1' for QuickPreview.").tqarg("LaTeX"))); showError(TQString(i18n("Could not run '%1' for QuickPreview.").arg("LaTeX")));
return false; return false;
} }
@ -238,7 +238,7 @@ bool QuickPreview::run(const TQString &text,const TQString &textfilename,int sta
dvips = m_ki->toolFactory()->create(previewlist[pvDvips]); dvips = m_ki->toolFactory()->create(previewlist[pvDvips]);
if ( !dvips ) if ( !dvips )
{ {
showError(TQString(i18n("Could not run '%1' for QuickPreview.").tqarg(dvipstool))); showError(TQString(i18n("Could not run '%1' for QuickPreview.").arg(dvipstool)));
return false; return false;
} }
} }
@ -251,7 +251,7 @@ bool QuickPreview::run(const TQString &text,const TQString &textfilename,int sta
viewer = m_ki->toolFactory()->create(previewlist[pvViewer],false); viewer = m_ki->toolFactory()->create(previewlist[pvViewer],false);
if ( !viewer ) if ( !viewer )
{ {
showError(TQString(i18n("Could not run '%1' for QuickPreview.").tqarg(viewertool))); showError(TQString(i18n("Could not run '%1' for QuickPreview.").arg(viewertool)));
return false; return false;
} }
} }

@ -75,13 +75,13 @@ void JScriptListViewItem::setText(int column, const TQString & str) {
TQString description = (action == 0L) ? TQString() : action->getDescription(); TQString description = (action == 0L) ? TQString() : action->getDescription();
switch(pair.first) { switch(pair.first) {
case 1: case 1:
KMessageBox::sorry(0L, i18n("The sequence \"%1\" is already assigned to the action \"%2\"").tqarg(str).tqarg(description), i18n("Sequence Already Assigned")); KMessageBox::sorry(0L, i18n("The sequence \"%1\" is already assigned to the action \"%2\"").arg(str).arg(description), i18n("Sequence Already Assigned"));
break; break;
case 2: case 2:
KMessageBox::sorry(0L, i18n("The sequence \"%1\" is a subsequence of \"%2\", which is already assigned to the action \"%3\"").tqarg(str).tqarg(pair.second).tqarg(description), i18n("Sequence Already Assigned")); KMessageBox::sorry(0L, i18n("The sequence \"%1\" is a subsequence of \"%2\", which is already assigned to the action \"%3\"").arg(str).arg(pair.second).arg(description), i18n("Sequence Already Assigned"));
break; break;
case 3: case 3:
KMessageBox::sorry(0L, i18n("The shorter sequence \"%1\" is already assigned to the action \"%2\"").tqarg(pair.second).tqarg(description), i18n("Sequence Already Assigned")); KMessageBox::sorry(0L, i18n("The shorter sequence \"%1\" is already assigned to the action \"%2\"").arg(pair.second).arg(description), i18n("Sequence Already Assigned"));
break; break;
} }
} }

@ -290,7 +290,7 @@ TabCellDialog::TabCellDialog(TQWidget *parent, TabularCell::Data *data,
colorgrouptqlayout->addWidget( m_ccBgcolor,0,1 ); colorgrouptqlayout->addWidget( m_ccBgcolor,0,1 );
colorgrouptqlayout->addWidget( m_ccTextcolor,1,1 ); colorgrouptqlayout->addWidget( m_ccTextcolor,1,1 );
// tqalignment group // alignment group
TQButtonGroup *aligngroup = new TQButtonGroup( i18n("Alignment"),page); TQButtonGroup *aligngroup = new TQButtonGroup( i18n("Alignment"),page);
aligngroup->setColumnLayout(0, Qt::Vertical ); aligngroup->setColumnLayout(0, Qt::Vertical );
aligngroup->tqlayout()->setSpacing( 6 ); aligngroup->tqlayout()->setSpacing( 6 );
@ -442,9 +442,9 @@ TabCellDialog::TabCellDialog(TQWidget *parent, TabularCell::Data *data,
connect(m_cbSep,TQT_SIGNAL(clicked()),this, TQT_SLOT(slotSeparatorClicked())); connect(m_cbSep,TQT_SIGNAL(clicked()),this, TQT_SLOT(slotSeparatorClicked()));
} }
TQWhatsThis::add(m_coHeader,i18n("Column or cell tqalignment.")); TQWhatsThis::add(m_coHeader,i18n("Column or cell alignment."));
TQWhatsThis::add(m_cbBold,i18n("Set bold font series.")); TQWhatsThis::add(m_cbBold,i18n("Set bold font series."));
TQWhatsThis::add(m_cbItalic,i18n("Set italic font tqshape.")); TQWhatsThis::add(m_cbItalic,i18n("Set italic font shape."));
TQWhatsThis::add(m_rbAlignleft,i18n("The text will be aligned at the left border of the cell.")); TQWhatsThis::add(m_rbAlignleft,i18n("The text will be aligned at the left border of the cell."));
TQWhatsThis::add(m_rbAligncenter,i18n("The text will be centered.")); TQWhatsThis::add(m_rbAligncenter,i18n("The text will be centered."));
TQWhatsThis::add(m_rbAlignright,i18n("The text will be aligned at the right border of the cell.")); TQWhatsThis::add(m_rbAlignright,i18n("The text will be aligned at the right border of the cell."));
@ -460,7 +460,7 @@ TabCellDialog::TabCellDialog(TQWidget *parent, TabularCell::Data *data,
TQWhatsThis::add(m_pbFrame4,i18n("Set all border lines.")); TQWhatsThis::add(m_pbFrame4,i18n("Set all border lines."));
TQWhatsThis::add(m_cellframe,i18n("Set user defined border lines. A mouse click into one of the four border ranges will set or clear this special border line.")); TQWhatsThis::add(m_cellframe,i18n("Set user defined border lines. A mouse click into one of the four border ranges will set or clear this special border line."));
setButtonWhatsThis(User1,i18n("Reset all settings to standard cell attributes: left tqalignment, normal font series and tqshape, white background color, black text color, no border lines.")); setButtonWhatsThis(User1,i18n("Reset all settings to standard cell attributes: left alignment, normal font series and shape, white background color, black text color, no border lines."));
} }
////////////////////////////// read data ////////////////////////////// ////////////////////////////// read data //////////////////////////////
@ -634,7 +634,7 @@ TabularItem::TabularItem(TQTable* table, const TabularCell::Data &data)
m_data = data; m_data = data;
} }
int TabularItem::tqalignment() const int TabularItem::alignment() const
{ {
return m_data.align | TQt::AlignVCenter; return m_data.align | TQt::AlignVCenter;
} }
@ -668,7 +668,7 @@ void TabularItem::paint(TQPainter *p,const TQColorGroup &cg,const TQRect &cr,boo
p->setFont(f); p->setFont(f);
} }
p->drawText( 2,0,w-4,h,tqalignment(), text() ); p->drawText( 2,0,w-4,h,alignment(), text() );
} }
//END TabularItem //END TabularItem
@ -1119,7 +1119,7 @@ TQPopupMenu *TabularTable::createPopupMenu()
void TabularTable::insertPopupAlign(TQPopupMenu *popup,bool header) void TabularTable::insertPopupAlign(TQPopupMenu *popup,bool header)
{ {
// tqalignment // alignment
int align = 0; int align = 0;
//calculate //calculate
@ -2137,13 +2137,13 @@ TQStringList TabularDialog::sortColorTable(TQMap<TQString,char> &colors)
sred = convertColor(r); sred = convertColor(r);
sgreen = convertColor(g); sgreen = convertColor(g);
sblue = convertColor(b); sblue = convertColor(b);
s = TQString("{rgb}{%1,%2,%3}").tqarg(sred).tqarg(sgreen).tqarg(sblue); s = TQString("{rgb}{%1,%2,%3}").arg(sred).arg(sgreen).arg(sblue);
} }
else else
{ {
s = TQString("{gray}{%1}").tqarg(convertColor(r)); s = TQString("{gray}{%1}").arg(convertColor(r));
} }
list << TQString("\\definecolor{tc%1}%2").tqarg(it.data()).tqarg(s); list << TQString("\\definecolor{tc%1}%2").arg(it.data()).arg(s);
} }
list.sort(); list.sort();
@ -2236,21 +2236,21 @@ void TabularDialog::slotOk()
if ( colinfo[col].bgcolor != whitename ) if ( colinfo[col].bgcolor != whitename )
{ {
TQChar color = defineColor(colinfo[col].bgcolor,colortable,colorchar); TQChar color = defineColor(colinfo[col].bgcolor,colortable,colorchar);
colorcommand += TQString("\\columncolor{tc%1}").tqarg(color); colorcommand += TQString("\\columncolor{tc%1}").arg(color);
pkgColortbl = true; pkgColortbl = true;
} }
if ( colinfo[col].textcolor != blackname ) if ( colinfo[col].textcolor != blackname )
{ {
TQChar color = defineColor(colinfo[col].textcolor,colortable,colorchar); TQChar color = defineColor(colinfo[col].textcolor,colortable,colorchar);
colorcommand += TQString("\\color{tc%1}").tqarg(color); colorcommand += TQString("\\color{tc%1}").arg(color);
pkgColor = true; pkgColor = true;
} }
if ( ! colorcommand.isEmpty() ) if ( ! colorcommand.isEmpty() )
{ {
if ( s.find('>') >= 0 ) if ( s.find('>') >= 0 )
s = s.replace(">{}",TQString(">{%1}").tqarg(colorcommand)); s = s.replace(">{}",TQString(">{%1}").arg(colorcommand));
else else
preamble += TQString(">{%1}").tqarg(colorcommand); preamble += TQString(">{%1}").arg(colorcommand);
pkgArray = true; pkgArray = true;
} }
@ -2285,7 +2285,7 @@ void TabularDialog::slotOk()
if ( bgcolor != whitename ) if ( bgcolor != whitename )
{ {
TQChar color = defineColor(cnt.nameBgcolor,colortable,colorchar); TQChar color = defineColor(cnt.nameBgcolor,colortable,colorchar);
textline += TQString("\\rowcolor{tc%1}\n").tqarg(color); textline += TQString("\\rowcolor{tc%1}\n").arg(color);
pkgColortbl = true; pkgColortbl = true;
} }
@ -2297,11 +2297,11 @@ void TabularDialog::slotOk()
{ {
// check for multicolumn and initialize string parameter // check for multicolumn and initialize string parameter
int colspan = cellitem->colSpan(); int colspan = cellitem->colSpan();
s1 = ( colspan > 1 ) ? TQString("%1").tqarg(colspan) : TQString(); s1 = ( colspan > 1 ) ? TQString("%1").arg(colspan) : TQString();
s2 = s3 = TQString(); s2 = s3 = TQString();
// Now look, if this cell(s) must be defined as multicolumn, because // Now look, if this cell(s) must be defined as multicolumn, because
// colspan is greater than 1, or the left vline, bgcolor or tqalignment // colspan is greater than 1, or the left vline, bgcolor or alignment
// is different from the preamble // is different from the preamble
bool useMulticolumn = bool useMulticolumn =
( ( colspan > 1 ) || ( ( colspan > 1 ) ||
@ -2325,10 +2325,10 @@ void TabularDialog::slotOk()
if ( cellitem->m_data.bgcolor.name() != whitename ) if ( cellitem->m_data.bgcolor.name() != whitename )
{ {
TQChar color = defineColor(cellitem->m_data.bgcolor.name(),colortable,colorchar); TQChar color = defineColor(cellitem->m_data.bgcolor.name(),colortable,colorchar);
s2 += TQString(">{\\columncolor{tc%1}}").tqarg(color); s2 += TQString(">{\\columncolor{tc%1}}").arg(color);
pkgColortbl = true; pkgColortbl = true;
} }
// tqalignment // alignment
//if ( cellitem->m_data.align!=colinfo[col].align ) { //if ( cellitem->m_data.align!=colinfo[col].align ) {
switch ( cellitem->m_data.align ) switch ( cellitem->m_data.align )
{ {
@ -2350,13 +2350,13 @@ void TabularDialog::slotOk()
} }
if ( colinfo[col].italic != (cellitem->m_data.font & TabularCell::cfItalic) ) if ( colinfo[col].italic != (cellitem->m_data.font & TabularCell::cfItalic) )
{ {
s3 += "\\ittqshape"; s3 += "\\itshape";
} }
if ( colinfo[col].textcolor != cellitem->m_data.textcolor.name() ) if ( colinfo[col].textcolor != cellitem->m_data.textcolor.name() )
{ {
TQChar color = defineColor(cellitem->m_data.textcolor.name(),colortable,colorchar); TQChar color = defineColor(cellitem->m_data.textcolor.name(),colortable,colorchar);
s3 += TQString("\\color{tc%1}").tqarg(color); s3 += TQString("\\color{tc%1}").arg(color);
pkgColor = true; pkgColor = true;
} }
if ( ! s3.isEmpty() ) if ( ! s3.isEmpty() )
@ -2379,7 +2379,7 @@ void TabularDialog::slotOk()
// build the whole cell entry // build the whole cell entry
if ( useMulticolumn ) if ( useMulticolumn )
{ {
textline += TQString("\\mc{%1}{%2}{%3}").tqarg(colspan).tqarg(s2).tqarg(s3); textline += TQString("\\mc{%1}{%2}{%3}").arg(colspan).arg(s2).arg(s3);
multicolumn = true; multicolumn = true;
} }
else else
@ -2445,7 +2445,7 @@ void TabularDialog::slotOk()
// build the tag to insert // build the tag to insert
if ( m_cbCenter->isChecked() ) if ( m_cbCenter->isChecked() )
m_td.tagBegin = TQString("\\begin{%1}\n").tqarg(centername); m_td.tagBegin = TQString("\\begin{%1}\n").arg(centername);
else if ( group ) else if ( group )
m_td.tagBegin = "{% \n"; m_td.tagBegin = "{% \n";
else else
@ -2468,22 +2468,22 @@ void TabularDialog::slotOk()
} }
// add environment command // add environment command
m_td.tagBegin += TQString("\\begin{%1}").tqarg(envname); m_td.tagBegin += TQString("\\begin{%1}").arg(envname);
// add width for starred versions // add width for starred versions
if ( m_cbStarred->isChecked() ) if ( m_cbStarred->isChecked() )
m_td.tagBegin += TQString("{%1}").tqarg(bullet); m_td.tagBegin += TQString("{%1}").arg(bullet);
// add optional tqalignment parameter // add optional alignment parameter
TQString envparameter = ( m_coParameter->isEnabled() ) ? m_coParameter->currentText() : TQString(); TQString envparameter = ( m_coParameter->isEnabled() ) ? m_coParameter->currentText() : TQString();
if ( ! envparameter.isEmpty() ) if ( ! envparameter.isEmpty() )
m_td.tagBegin += TQString("[%1]").tqarg(envparameter); m_td.tagBegin += TQString("[%1]").arg(envparameter);
// add preamble // add preamble
m_td.tagBegin += TQString("{%1}").tqarg(preamble); m_td.tagBegin += TQString("{%1}").arg(preamble);
m_td.tagBegin += getEol(0,true) + '\n'; m_td.tagBegin += getEol(0,true) + '\n';
// close environment // close environment
m_td.tagEnd += TQString("\\end{%1}\n").tqarg(envname); m_td.tagEnd += TQString("\\end{%1}\n").arg(envname);
if ( m_cbCenter->isChecked() ) if ( m_cbCenter->isChecked() )
m_td.tagEnd += TQString("\\end{%1}\n").tqarg(centername); m_td.tagEnd += TQString("\\end{%1}\n").arg(centername);
else if ( group ) else if ( group )
m_td.tagEnd += "}\n"; m_td.tagEnd += "}\n";
@ -2543,7 +2543,7 @@ TQString TabularDialog::getEol(int row, bool top)
{ {
TQString cmd = ( booktabs ) ? "cmidrule" : "cline"; TQString cmd = ( booktabs ) ? "cmidrule" : "cline";
for ( uint i=0; i<lines.list.count(); i+=2 ) for ( uint i=0; i<lines.list.count(); i+=2 )
s += TQString("\\%1{%2-%3}").tqarg(cmd).tqarg(lines.list[i]+1).tqarg(lines.list[i+1]+1); s += TQString("\\%1{%2-%3}").arg(cmd).arg(lines.list[i]+1).arg(lines.list[i+1]+1);
} }
return s; return s;

@ -149,7 +149,7 @@ public:
TabularItem(TQTable* table); TabularItem(TQTable* table);
TabularItem(TQTable* table, const TabularCell::Data &data); TabularItem(TQTable* table, const TabularCell::Data &data);
int tqalignment() const; int alignment() const;
bool isDefault(); bool isDefault();
bool isMulticolumn(); bool isMulticolumn();

@ -76,7 +76,7 @@ bool Manager::copyAppData(const KURL& src, const TQString& subdir, const TQStrin
return KIO::NetAccess::copy(src, targetURL, kapp->mainWidget()); return KIO::NetAccess::copy(src, targetURL, kapp->mainWidget());
} }
else { else {
KMessageBox::error(0, i18n("Could not find a folder to save %1 to.\nCheck whether you have a .kde folder with write permissions in your home folder.").tqarg(fileName)); KMessageBox::error(0, i18n("Could not find a folder to save %1 to.\nCheck whether you have a .kde folder with write permissions in your home folder.").arg(fileName));
return false; return false;
} }
} }

@ -451,7 +451,7 @@ void TexDocDialog::slotListViewDoubleClicked(TQListViewItem *item,const TQPoint
filename = searchFile(texdocfile,m_texmfPath,"tex"); filename = searchFile(texdocfile,m_texmfPath,"tex");
if ( filename.isEmpty() ) if ( filename.isEmpty() )
{ {
KMessageBox::error(this,i18n("Could not find '%1'").tqarg(filename)); KMessageBox::error(this,i18n("Could not find '%1'").arg(filename));
return; return;
} }
} }
@ -506,10 +506,10 @@ void TexDocDialog::slotSearchClicked()
if ( searchlist.count() > 0 ) if ( searchlist.count() > 0 )
{ {
m_texdocs->clear(); m_texdocs->clear();
showToc(i18n("Search results for keyword '%1'").tqarg(keyword),searchlist,false); showToc(i18n("Search results for keyword '%1'").arg(keyword),searchlist,false);
} }
else else
KMessageBox::error(this,i18n("No documents found for keyword '%1'.").tqarg(keyword)); KMessageBox::error(this,i18n("No documents found for keyword '%1'.").arg(keyword));
} }
void TexDocDialog::slotHelp() void TexDocDialog::slotHelp()

@ -59,9 +59,9 @@ void UserHelp::readConfig()
int entries = config->readNumEntry("entries"); int entries = config->readNumEntry("entries");
for ( int i=0; i<entries; ++i ) for ( int i=0; i<entries; ++i )
{ {
menu << config->readEntry(TQString("menu%1").tqarg(i)); menu << config->readEntry(TQString("menu%1").arg(i));
if ( !menu[i].isEmpty() || menu[i]=="-" ) if ( !menu[i].isEmpty() || menu[i]=="-" )
files << config->readEntry(TQString("file%1").tqarg(i)); files << config->readEntry(TQString("file%1").arg(i));
else else
files << TQString(); files << TQString();
} }
@ -84,9 +84,9 @@ void UserHelp::writeConfig()
config->writeEntry("entries",entries); config->writeEntry("entries",entries);
for ( int i=0; i<entries; ++i ) for ( int i=0; i<entries; ++i )
{ {
config->writeEntry(TQString("menu%1").tqarg(i), m_menuentries[i]); config->writeEntry(TQString("menu%1").arg(i), m_menuentries[i]);
if ( m_menuentries[i] != "-" ) if ( m_menuentries[i] != "-" )
config->writeEntry(TQString("file%1").tqarg(i), m_helpfiles[i]); config->writeEntry(TQString("file%1").arg(i), m_helpfiles[i]);
} }
} }
@ -249,7 +249,7 @@ void UserHelp::slotUserHelpActivated(int index)
bool http = ( filename.find("http://",0) == 0 ); bool http = ( filename.find("http://",0) == 0 );
if ( !http && !fi.exists() ) if ( !http && !fi.exists() )
{ {
KMessageBox::error(0,TQString(i18n("File '%1' doesn't exist.")).tqarg(filename)); KMessageBox::error(0,TQString(i18n("File '%1' doesn't exist.")).arg(filename));
return; return;
} }

@ -411,7 +411,7 @@ void UserHelpAddDialog::slotChooseFile()
TQFileInfo fi(filename); TQFileInfo fi(filename);
if ( ! fi.exists() ) if ( ! fi.exists() )
{ {
KMessageBox::error(0,TQString(i18n("File '%1' does not exist.")).tqarg(filename)); KMessageBox::error(0,TQString(i18n("File '%1' does not exist.")).arg(filename));
return; return;
} }
@ -452,7 +452,7 @@ void UserHelpAddDialog::slotOk()
TQFileInfo fi(filename); TQFileInfo fi(filename);
if ( filename.find("http://",0)!=0 && !fi.exists() ) if ( filename.find("http://",0)!=0 && !fi.exists() )
{ {
KMessageBox::error(this,TQString(i18n("File '%1' doesn't exist.")).tqarg(filename)); KMessageBox::error(this,TQString(i18n("File '%1' doesn't exist.")).arg(filename));
return; return;
} }

@ -80,7 +80,7 @@ UserTags::~UserTags()
void UserTags::redraw() void UserTags::redraw()
{ {
KILE_DEBUG() << TQString("usermenudialog redraw() m_prevIndex = %1, m_list.size() = %2").tqarg(m_prevIndex).tqarg(m_list.size()) << endl; KILE_DEBUG() << TQString("usermenudialog redraw() m_prevIndex = %1, m_list.size() = %2").arg(m_prevIndex).arg(m_list.size()) << endl;
m_combo->clear(); m_combo->clear();
if (m_list.size() > 0) if (m_list.size() > 0)
@ -103,7 +103,7 @@ void UserTags::redraw()
void UserTags::change(int index) void UserTags::change(int index)
{ {
KILE_DEBUG() << TQString("usermenudialog: change(%1) prev %2").tqarg(index).tqarg(m_prevIndex) << endl; KILE_DEBUG() << TQString("usermenudialog: change(%1) prev %2").arg(index).arg(m_prevIndex) << endl;
m_list[m_prevIndex] = splitTag(m_editName->text(), m_editTag->text()); m_list[m_prevIndex] = splitTag(m_editName->text(), m_editTag->text());
m_combo->changeItem(TQString::number(m_prevIndex+1)+": "+m_list[m_prevIndex].text, m_prevIndex); m_combo->changeItem(TQString::number(m_prevIndex+1)+": "+m_list[m_prevIndex].text, m_prevIndex);

Loading…
Cancel
Save