Remove additional unneeded tq method conversions

pull/1/head
Timothy Pearson 14 years ago
parent 2a411f53a0
commit 522c7294f0

@ -313,7 +313,7 @@ void Archive::open(const TQString &path)
"It can be opened but not every information will be available to you. " "It can be opened but not every information will be available to you. "
"For instance, some notes may be missing because they are of a type only available in new versions. " "For instance, some notes may be missing because they are of a type only available in new versions. "
"When saving the file back, consider to save it to another file, to preserve the original one.") "When saving the file back, consider to save it to another file, to preserve the original one.")
.tqarg(kapp->aboutData()->programName()), .arg(kapp->aboutData()->programName()),
i18n("Basket Archive Error") i18n("Basket Archive Error")
); );
} }
@ -321,7 +321,7 @@ void Archive::open(const TQString &path)
KMessageBox::error( KMessageBox::error(
0, 0,
i18n("This file was created with a recent version of %1. Please upgrade to a newer version to be able to open that file.") i18n("This file was created with a recent version of %1. Please upgrade to a newer version to be able to open that file.")
.tqarg(kapp->aboutData()->programName()), .arg(kapp->aboutData()->programName()),
i18n("Basket Archive Error") i18n("Basket Archive Error")
); );
file.close(); file.close();

@ -65,7 +65,7 @@ BackupDialog::BackupDialog(TQWidget *parent, const char *name)
savesFolder = savesFolder.left(savesFolder.length() - 1); // savesFolder ends with "/" savesFolder = savesFolder.left(savesFolder.length() - 1); // savesFolder ends with "/"
TQGroupBox *folderGroup = new TQGroupBox(1, Qt::Horizontal, i18n("Save Folder"), page); TQGroupBox *folderGroup = new TQGroupBox(1, Qt::Horizontal, i18n("Save Folder"), page);
new TQLabel("<qt><nobr>" + i18n("Your baskets are currently stored in that folder:<br><b>%1</b>").tqarg(savesFolder), folderGroup); new TQLabel("<qt><nobr>" + i18n("Your baskets are currently stored in that folder:<br><b>%1</b>").arg(savesFolder), folderGroup);
TQWidget *folderWidget = new TQWidget(folderGroup); TQWidget *folderWidget = new TQWidget(folderGroup);
TQHBoxLayout *folderLayout = new TQHBoxLayout(folderWidget, 0, spacingHint()); TQHBoxLayout *folderLayout = new TQHBoxLayout(folderWidget, 0, spacingHint());
TQPushButton *moveFolder = new TQPushButton(i18n("&Move to Another Folder..."), folderWidget); TQPushButton *moveFolder = new TQPushButton(i18n("&Move to Another Folder..."), folderWidget);
@ -77,9 +77,9 @@ BackupDialog::BackupDialog(TQWidget *parent, const char *name)
"In this case, mount the shared-folder to the local file system and ask %2 to use that mount point.<br>" "In this case, mount the shared-folder to the local file system and ask %2 to use that mount point.<br>"
"Warning: you should not run %3 at the same time on both computers, or you risk to loss data while the two applications are desynced.</li>" "Warning: you should not run %3 at the same time on both computers, or you risk to loss data while the two applications are desynced.</li>"
"</ul><p>Please remember that you should not change the content of that folder manually (eg. adding a file in a basket folder will not add that file to the basket).</p>") "</ul><p>Please remember that you should not change the content of that folder manually (eg. adding a file in a basket folder will not add that file to the basket).</p>")
.tqarg(kapp->aboutData()->programName()) .arg(kapp->aboutData()->programName())
.tqarg(kapp->aboutData()->programName()) .arg(kapp->aboutData()->programName())
.tqarg(kapp->aboutData()->programName()), .arg(kapp->aboutData()->programName()),
folderWidget); folderWidget);
folderLayout->addWidget(moveFolder); folderLayout->addWidget(moveFolder);
folderLayout->addWidget(useFolder); folderLayout->addWidget(useFolder);
@ -114,7 +114,7 @@ void BackupDialog::populateLastBackup()
{ {
TQString lastBackupText = i18n("Last backup: never"); TQString lastBackupText = i18n("Last backup: never");
if (Settings::lastBackup().isValid()) if (Settings::lastBackup().isValid())
lastBackupText = i18n("Last backup: %1").tqarg(Settings::lastBackup().toString(Qt::LocalDate)); lastBackupText = i18n("Last backup: %1").arg(Settings::lastBackup().toString(Qt::LocalDate));
m_lastBackup->setText(lastBackupText); m_lastBackup->setText(lastBackupText);
} }
@ -135,7 +135,7 @@ void BackupDialog::moveToAnotherFolder()
if (content.count() > 2) { // "." and ".." if (content.count() > 2) { // "." and ".."
int result = KMessageBox::questionYesNo( int result = KMessageBox::questionYesNo(
0, 0,
"<qt>" + i18n("The folder <b>%1</b> is not empty. Do you want to override it?").tqarg(folder), "<qt>" + i18n("The folder <b>%1</b> is not empty. Do you want to override it?").arg(folder),
i18n("Override Folder?"), i18n("Override Folder?"),
KGuiItem(i18n("&Override"), "filesave") KGuiItem(i18n("&Override"), "filesave")
); );
@ -170,7 +170,7 @@ void BackupDialog::backup()
config->setGroup("Backups"); config->setGroup("Backups");
TQString folder = config->readEntry("lastFolder", TQDir::homeDirPath()) + "/"; TQString folder = config->readEntry("lastFolder", TQDir::homeDirPath()) + "/";
TQString fileName = i18n("Backup filename (without extension), %1 is the date", "Baskets_%1") TQString fileName = i18n("Backup filename (without extension), %1 is the date", "Baskets_%1")
.tqarg(TQDate::currentDate().toString(Qt::ISODate)); .arg(TQDate::currentDate().toString(Qt::ISODate));
TQString url = folder + fileName; TQString url = folder + fileName;
// Ask a file name & path to the user: // Ask a file name & path to the user:
@ -187,7 +187,7 @@ void BackupDialog::backup()
int result = KMessageBox::questionYesNoCancel( int result = KMessageBox::questionYesNoCancel(
0, 0,
"<qt>" + i18n("The file <b>%1</b> already exists. Do you really want to override it?") "<qt>" + i18n("The file <b>%1</b> already exists. Do you really want to override it?")
.tqarg(KURL(destination).fileName()), .arg(KURL(destination).fileName()),
i18n("Override File?"), i18n("Override File?"),
KGuiItem(i18n("&Override"), "filesave") KGuiItem(i18n("&Override"), "filesave")
); );
@ -245,7 +245,7 @@ void BackupDialog::restore()
TQFile file(readmePath); TQFile file(readmePath);
if (file.open(IO_WriteOnly)) { if (file.open(IO_WriteOnly)) {
TQTextStream stream(&file); TQTextStream stream(&file);
stream << i18n("This is a safety copy of your baskets like they were before you started to restore the backup %1.").tqarg(KURL(path).fileName()) + "\n\n" stream << i18n("This is a safety copy of your baskets like they were before you started to restore the backup %1.").arg(KURL(path).fileName()) + "\n\n"
<< i18n("If the restoration was a success and you restored what you wanted to restore, you can remove this folder.") + "\n\n" << i18n("If the restoration was a success and you restored what you wanted to restore, you can remove this folder.") + "\n\n"
<< i18n("If something went wrong during the restoration process, you can re-use this folder to store your baskets and nothing will be lost.") + "\n\n" << i18n("If something went wrong during the restoration process, you can re-use this folder to store your baskets and nothing will be lost.") + "\n\n"
<< i18n("Choose \"Basket\" -> \"Backup & Restore...\" -> \"Use Another Existing Folder...\" and select that folder.") + "\n"; << i18n("Choose \"Basket\" -> \"Backup & Restore...\" -> \"Use Another Existing Folder...\" and select that folder.") + "\n";
@ -253,8 +253,8 @@ void BackupDialog::restore()
} }
TQString message = TQString message =
"<p><nobr>" + i18n("Restoring <b>%1</b>. Please wait...").tqarg(KURL(path).fileName()) + "</nobr></p><p>" + "<p><nobr>" + i18n("Restoring <b>%1</b>. Please wait...").arg(KURL(path).fileName()) + "</nobr></p><p>" +
i18n("If something goes wrong during the restoration process, read the file <b>%1</b>.").tqarg(readmePath); i18n("If something goes wrong during the restoration process, read the file <b>%1</b>.").arg(readmePath);
KProgressDialog *dialog = new KProgressDialog(0, 0, i18n("Restore Baskets"), message, /*modal=*/true); KProgressDialog *dialog = new KProgressDialog(0, 0, i18n("Restore Baskets"), message, /*modal=*/true);
dialog->setAllowCancel(false); dialog->setAllowCancel(false);
@ -332,7 +332,7 @@ void Backup::setFolderAndRestart(const TQString &folder, const TQString &message
// This is important for users to trust the application in such a critical phase and understands what's happening: // This is important for users to trust the application in such a critical phase and understands what's happening:
KMessageBox::information( KMessageBox::information(
0, 0,
"<qt>" + message.tqarg( "<qt>" + message.arg(
(folder.endsWith("/") ? folder.left(folder.length() - 1) : folder), (folder.endsWith("/") ? folder.left(folder.length() - 1) : folder),
kapp->aboutData()->programName()), kapp->aboutData()->programName()),
i18n("Restart") i18n("Restart")
@ -353,7 +353,7 @@ TQString Backup::newSafetyFolder()
return fullPath; return fullPath;
for (int i = 2; ; ++i) { for (int i = 2; ; ++i) {
fullPath = TQDir::homeDirPath() + "/" + i18n("Safety folder name before restoring a basket data archive", "Baskets Before Restoration (%1)").tqarg(i) + "/"; fullPath = TQDir::homeDirPath() + "/" + i18n("Safety folder name before restoring a basket data archive", "Baskets Before Restoration (%1)").arg(i) + "/";
if (!dir.exists(fullPath)) if (!dir.exists(fullPath))
return fullPath; return fullPath;
} }

@ -2533,7 +2533,7 @@ void Basket::doAutoScrollSelection()
dx = pos.x() - visibleWidth() + AUTO_SCROLL_MARGIN; dx = pos.x() - visibleWidth() + AUTO_SCROLL_MARGIN;
if (dx || dy) { if (dx || dy) {
kapp->sendPostedEvents(); // Do the repaints, because the scrolling will make the area to tqrepaint to be wrong kapp->sendPostedEvents(); // Do the repaints, because the scrolling will make the area to repaint to be wrong
scrollBy(dx, dy); scrollBy(dx, dy);
if (!m_autoScrollSelectionTimer.isActive()) if (!m_autoScrollSelectionTimer.isActive())
m_autoScrollSelectionTimer.start(AUTO_SCROLL_DELAY); m_autoScrollSelectionTimer.start(AUTO_SCROLL_DELAY);
@ -2707,7 +2707,7 @@ void Basket::mouseEnteredEditorWidget()
void Basket::removeInserter() void Basket::removeInserter()
{ {
if (m_inserterShown) { // Do not hide (and then update/tqrepaint the view) if it is already hidden! if (m_inserterShown) { // Do not hide (and then update/repaint the view) if it is already hidden!
m_inserterShown = false; m_inserterShown = false;
updateContents(m_inserterRect); updateContents(m_inserterRect);
} }
@ -2836,9 +2836,9 @@ void Basket::maybeTip(const TQPoint &pos)
if (tagsString.isEmpty()) if (tagsString.isEmpty())
tagsString = tagName; tagsString = tagName;
else else
tagsString = i18n("%1, %2").tqarg(tagsString, tagName); tagsString = i18n("%1, %2").arg(tagsString, tagName);
} }
message = message.tqarg(tagsString); message = message.arg(tagsString);
} }
break; break;
case Note::Custom0: message = note->content()->zoneTip(zone); break; //"Open this link/Open this file/Open this sound file/Launch this application" case Note::Custom0: message = note->content()->zoneTip(zone); break; //"Open this link/Open this file/Open this sound file/Launch this application"
@ -2875,7 +2875,7 @@ void Basket::maybeTip(const TQPoint &pos)
TQStringList::iterator key; TQStringList::iterator key;
TQStringList::iterator value; TQStringList::iterator value;
for (key = keys.begin(), value = values.begin(); key != keys.end() && value != values.end(); ++key, ++value) for (key = keys.begin(), value = values.begin(); key != keys.end() && value != values.end(); ++key, ++value)
message += "<br>" + i18n("of the form 'key: value'", "<b>%1</b>: %2").tqarg(*key, *value); message += "<br>" + i18n("of the form 'key: value'", "<b>%1</b>: %2").arg(*key, *value);
message += "</nobr></qt>"; message += "</nobr></qt>";
} else if (m_inserterSplit && (zone == Note::TopInsert || zone == Note::BottomInsert)) } else if (m_inserterSplit && (zone == Note::TopInsert || zone == Note::BottomInsert))
message += "\n" + i18n("Click on the right to group instead of insert"); message += "\n" + i18n("Click on the right to group instead of insert");
@ -3083,7 +3083,7 @@ void Basket::drawContents(TQPainter *painter, int clipX, int clipY, int clipWidt
#ifdef HAVE_LIBGPGME #ifdef HAVE_LIBGPGME
label->setText( text + i18n("Press Unlock to access it.") ); label->setText( text + i18n("Press Unlock to access it.") );
#else #else
label->setText( text + i18n("Encryption is not supported by<br/>this version of %1.").tqarg(kapp->aboutData()->programName()) ); label->setText( text + i18n("Encryption is not supported by<br/>this version of %1.").arg(kapp->aboutData()->programName()) );
#endif #endif
label->setAlignment( int( TQLabel::AlignTop ) ); label->setAlignment( int( TQLabel::AlignTop ) );
tqlayout->addMultiCellWidget( label, 0, 0, 1, 2 ); tqlayout->addMultiCellWidget( label, 0, 0, 1, 2 );
@ -3132,7 +3132,7 @@ void Basket::drawContents(TQPainter *painter, int clipX, int clipY, int clipWidt
if (!m_loaded) { if (!m_loaded) {
TQPixmap pixmap(visibleWidth(), visibleHeight()); // TODO: Clip it to asked size only! TQPixmap pixmap(visibleWidth(), visibleHeight()); // TODO: Clip it to asked size only!
TQPainter painter2(&pixmap); TQPainter painter2(&pixmap);
TQSimpleRichText rt(TQString("<center>%1</center>").tqarg(i18n("Loading...")), TQScrollView::font()); TQSimpleRichText rt(TQString("<center>%1</center>").arg(i18n("Loading...")), TQScrollView::font());
rt.setWidth(visibleWidth()); rt.setWidth(visibleWidth());
int hrt = rt.height(); int hrt = rt.height();
painter2.fillRect(0, 0, visibleWidth(), visibleHeight(), brush); painter2.fillRect(0, 0, visibleWidth(), visibleHeight(), brush);
@ -5001,13 +5001,13 @@ void Basket::keyPressEvent(TQKeyEvent *event)
if (event->state() & TQt::ShiftButton) { // Shift+arrowKeys selection if (event->state() & TQt::ShiftButton) { // Shift+arrowKeys selection
if (m_startOfShiftSelectionNote == 0L) if (m_startOfShiftSelectionNote == 0L)
m_startOfShiftSelectionNote = toFocus; m_startOfShiftSelectionNote = toFocus;
ensureNoteVisible(toFocus); // Important: this line should be before the other ones because else tqrepaint would be done on the wrong part! ensureNoteVisible(toFocus); // Important: this line should be before the other ones because else repaint would be done on the wrong part!
selectRange(m_startOfShiftSelectionNote, toFocus); selectRange(m_startOfShiftSelectionNote, toFocus);
setFocusedNote(toFocus); setFocusedNote(toFocus);
event->accept(); event->accept();
return; return;
} else /*if (toFocus != m_focusedNote)*/ { // Move focus to ANOTHER note... } else /*if (toFocus != m_focusedNote)*/ { // Move focus to ANOTHER note...
ensureNoteVisible(toFocus); // Important: this line should be before the other ones because else tqrepaint would be done on the wrong part! ensureNoteVisible(toFocus); // Important: this line should be before the other ones because else repaint would be done on the wrong part!
setFocusedNote(toFocus); setFocusedNote(toFocus);
m_startOfShiftSelectionNote = toFocus; m_startOfShiftSelectionNote = toFocus;
if ( ! (event->state() & TQt::ControlButton) ) // ... select only current note if Control if ( ! (event->state() & TQt::ControlButton) ) // ... select only current note if Control
@ -5282,7 +5282,7 @@ bool Basket::loadFromFile(const TQString &fullPath, TQByteArray *array)
if(m_encryptionType == PrivateKeyEncryption) if(m_encryptionType == PrivateKeyEncryption)
m_gpg->setText(i18n("Please enter the password for the following private key:"), false); m_gpg->setText(i18n("Please enter the password for the following private key:"), false);
else else
m_gpg->setText(i18n("Please enter the password for the basket <b>%1</b>:").tqarg(basketName()), false); // Used when decrypting m_gpg->setText(i18n("Please enter the password for the basket <b>%1</b>:").arg(basketName()), false); // Used when decrypting
return m_gpg->decrypt(tmp, array); return m_gpg->decrypt(tmp, array);
} }
#else #else
@ -5327,7 +5327,7 @@ bool Basket::saveToFile(const TQString& fullPath, const TQByteArray& array, TQ_U
m_gpg->setText("", false); m_gpg->setText("", false);
} }
else else
m_gpg->setText(i18n("Please assign a password to the basket <b>%1</b>:").tqarg(basketName()), true); // Used when defining a new password m_gpg->setText(i18n("Please assign a password to the basket <b>%1</b>:").arg(basketName()), true); // Used when defining a new password
success = m_gpg->encrypt(array, length, &tmp, key); success = m_gpg->encrypt(array, length, &tmp, key);
length = tmp.size(); length = tmp.size();
@ -5394,9 +5394,9 @@ bool Basket::saveToFile(const TQString& fullPath, const TQByteArray& array, TQ_U
), ),
(openSuccess (openSuccess
? i18n("Please remove files on the disk <b>%1</b> to let the application safely save your changes.") ? i18n("Please remove files on the disk <b>%1</b> to let the application safely save your changes.")
.tqarg(KIO::findPathMountPoint(fullPath)) .arg(KIO::findPathMountPoint(fullPath))
: i18n("File permissions are bad for <b>%1</b>. Please check that you have write access to it and the parent folders.") : i18n("File permissions are bad for <b>%1</b>. Please check that you have write access to it and the parent folders.")
.tqarg(fullPath) .arg(fullPath)
), ),
TQT_TQWIDGET(kapp->activeWindow()) TQT_TQWIDGET(kapp->activeWindow())
); );

@ -76,12 +76,12 @@ TQString BasketFactory::unpackTemplate(const TQString &templateName)
" <properties>\n" " <properties>\n"
" <disposition mindMap=\"%1\" columnCount=\"%2\" free=\"%3\" />\n" " <disposition mindMap=\"%1\" columnCount=\"%2\" free=\"%3\" />\n"
" </properties>\n" " </properties>\n"
" <notes>\n" ).tqarg( (templateName == "mindmap" ? "true" : "false"), " <notes>\n" ).arg( (templateName == "mindmap" ? "true" : "false"),
TQString::number(nbColumns), TQString::number(nbColumns),
(templateName == "free" || templateName == "mindmap" ? "true" : "false") ); (templateName == "free" || templateName == "mindmap" ? "true" : "false") );
if (nbColumns > 0) if (nbColumns > 0)
for (int i = 0; i < nbColumns; ++i) for (int i = 0; i < nbColumns; ++i)
stream << TQString(" <group width=\"%1\"></group>\n").tqarg(columnWidth); stream << TQString(" <group width=\"%1\"></group>\n").arg(columnWidth);
stream << " </notes>\n" stream << " </notes>\n"
"</basket>\n"; "</basket>\n";
file.close(); file.close();

@ -109,8 +109,8 @@ TQString BasketListViewItem::escapedName(const TQString &string)
TQString letter; // Find the letter TQString letter; // Find the letter
TQString altKey = /*i18n(*/"Alt"/*)*/; //i18n("The [Alt] key, as shown in shortcuts like Alt+C...", "Alt"); TQString altKey = /*i18n(*/"Alt"/*)*/; //i18n("The [Alt] key, as shown in shortcuts like Alt+C...", "Alt");
TQString shiftKey = /*i18n(*/"Shift"/*)*/; //i18n("The [Shift] key, as shown in shortcuts like Alt+Shift+1...", "Shift"); TQString shiftKey = /*i18n(*/"Shift"/*)*/; //i18n("The [Shift] key, as shown in shortcuts like Alt+Shift+1...", "Shift");
TQRegExp altLetterExp( TQString("^%1\\+(.)$").tqarg(altKey) ); TQRegExp altLetterExp( TQString("^%1\\+(.)$").arg(altKey) );
TQRegExp altShiftLetterExp( TQString("^%1\\+%2\\+(.)$").tqarg(altKey, shiftKey) ); TQRegExp altShiftLetterExp( TQString("^%1\\+%2\\+(.)$").arg(altKey, shiftKey) );
if (altLetterExp.search(m_basket->shortcut().toStringInternal()) != -1) if (altLetterExp.search(m_basket->shortcut().toStringInternal()) != -1)
letter = altLetterExp.cap(1); letter = altLetterExp.cap(1);
if (letter.isEmpty() && altShiftLetterExp.search(m_basket->shortcut().toStringInternal()) != -1) if (letter.isEmpty() && altShiftLetterExp.search(m_basket->shortcut().toStringInternal()) != -1)
@ -140,7 +140,7 @@ void BasketListViewItem::setup()
setPixmap(/*column=*/0, icon); setPixmap(/*column=*/0, icon);
tqrepaint(); repaint();
} }
BasketListViewItem* BasketListViewItem::lastChild() BasketListViewItem* BasketListViewItem::lastChild()
@ -260,7 +260,7 @@ extern void drawGradient( TQPainter *p, const TQColor &colorTop, const TQColor &
TQPixmap BasketListViewItem::circledTextPixmap(const TQString &text, int height, const TQFont &font, const TQColor &color) TQPixmap BasketListViewItem::circledTextPixmap(const TQString &text, int height, const TQFont &font, const TQColor &color)
{ {
TQString key = TQString("BLI-%1.%2.%3.%4") TQString key = TQString("BLI-%1.%2.%3.%4")
.tqarg(text).tqarg(height).tqarg(font.toString()).tqarg(color.rgb()); .arg(text).arg(height).arg(font.toString()).arg(color.rgb());
if (TQPixmap* cached=TQPixmapCache::find(key)) { if (TQPixmap* cached=TQPixmapCache::find(key)) {
return *cached; return *cached;
} }
@ -335,12 +335,12 @@ TQPixmap BasketListViewItem::foundCountPixmap(bool isLoading, int countFound, bo
TQString text; TQString text;
if (childsAreLoading) { if (childsAreLoading) {
if (countChildsFound > 0) if (countChildsFound > 0)
text = i18n("%1+%2+").tqarg(TQString::number(countFound), TQString::number(countChildsFound)); text = i18n("%1+%2+").arg(TQString::number(countFound), TQString::number(countChildsFound));
else else
text = i18n("%1+").tqarg(TQString::number(countFound)); text = i18n("%1+").arg(TQString::number(countFound));
} else { } else {
if (countChildsFound > 0) if (countChildsFound > 0)
text = i18n("%1+%2").tqarg(TQString::number(countFound), TQString::number(countChildsFound)); text = i18n("%1+%2").arg(TQString::number(countFound), TQString::number(countChildsFound));
else if (countFound > 0) else if (countFound > 0)
text = TQString::number(countFound); text = TQString::number(countFound);
else else
@ -452,21 +452,21 @@ void BasketListViewItem::paintCell(TQPainter *painter, const TQColorGroup &/*col
// Don't forget to update the key computation if parameters // Don't forget to update the key computation if parameters
// affecting the rendering logic change // affecting the rendering logic change
TQString key = TQString("BLVI::pC-%1.%2.%3.%4.%5.%6.%7.%8.%9.%10.%11.%12.%13.%14.%15") TQString key = TQString("BLVI::pC-%1.%2.%3.%4.%5.%6.%7.%8.%9.%10.%11.%12.%13.%14.%15")
.tqarg(effectiveWidth) .arg(effectiveWidth)
.tqarg(drawRoundRect) .arg(drawRoundRect)
.tqarg(textColor.rgb()) .arg(textColor.rgb())
.tqarg(m_basket->backgroundColor().rgb()) .arg(m_basket->backgroundColor().rgb())
.tqarg(isCurrentBasket()) .arg(isCurrentBasket())
.tqarg(shownBelow && shownBelow->isCurrentBasket()) .arg(shownBelow && shownBelow->isCurrentBasket())
.tqarg(shownAbove && shownAbove->isCurrentBasket()) .arg(shownAbove && shownAbove->isCurrentBasket())
.tqarg(showLoadingIcon) .arg(showLoadingIcon)
.tqarg(showEncryptedIcon) .arg(showEncryptedIcon)
.tqarg(showCountPixmap) .arg(showCountPixmap)
.tqarg(m_basket->countFounds()) .arg(m_basket->countFounds())
.tqarg(countHiddenChildsFound()) .arg(countHiddenChildsFound())
.tqarg(m_isUnderDrag) .arg(m_isUnderDrag)
.tqarg(m_basket->basketName()) .arg(m_basket->basketName())
.tqarg(m_basket->icon()); .arg(m_basket->icon());
if (TQPixmap* cached = TQPixmapCache::find(key)) { if (TQPixmap* cached = TQPixmapCache::find(key)) {
// TQt's documentation recommends copying the pointer // TQt's documentation recommends copying the pointer
// into a TQPixmap immediately // into a TQPixmap immediately

@ -1354,7 +1354,7 @@ void BNPView::notesStateChanged()
if (basket->countFounds() != basket->count()) if (basket->countFounds() != basket->count())
showns = i18n("%n match", "%n matches", basket->countFounds()); showns = i18n("%n match", "%n matches", basket->countFounds());
setSelectionStatus( setSelectionStatus(
i18n("e.g. '18 notes, 10 matches, 5 selected'", "%1, %2, %3").tqarg(count, showns, selecteds) ); i18n("e.g. '18 notes, 10 matches, 5 selected'", "%1, %2, %3").arg(count, showns, selecteds) );
} }
// If we added a note that match the global filter, update the count number in the tree: // If we added a note that match the global filter, update the count number in the tree:
@ -1544,8 +1544,8 @@ TQPopupMenu* BNPView::popupMenu(const TQString &menuName)
"<p>As last ressort, if you are sure the application is correctly installed " "<p>As last ressort, if you are sure the application is correctly installed "
"but you had a preview version of it, try to remove the " "but you had a preview version of it, try to remove the "
"file %5basketui.rc</p>") "file %5basketui.rc</p>")
.tqarg(kapp->aboutData()->programName(), kapp->aboutData()->programName(), .arg(kapp->aboutData()->programName(), kapp->aboutData()->programName(),
stdDirs.saveLocation("data", "basket/")).tqarg(stdDirs.saveLocation("data", "basket/"), stdDirs.saveLocation("data", "basket/")), stdDirs.saveLocation("data", "basket/")).arg(stdDirs.saveLocation("data", "basket/"), stdDirs.saveLocation("data", "basket/")),
i18n("Ressource not Found"), KMessageBox::AllowLink ); i18n("Ressource not Found"), KMessageBox::AllowLink );
} }
if(!isPart()) if(!isPart())
@ -1701,13 +1701,13 @@ void BNPView::delBasket()
KMessageBox::createKMessageBox( KMessageBox::createKMessageBox(
dialog, TQMessageBox::Information, dialog, TQMessageBox::Information,
i18n("<qt>Do you really want to remove the basket <b>%1</b> and its contents?</qt>") i18n("<qt>Do you really want to remove the basket <b>%1</b> and its contents?</qt>")
.tqarg(Tools::textToHTMLWithoutP(basket->basketName())), .arg(Tools::textToHTMLWithoutP(basket->basketName())),
basketsList, /*ask=*/"", /*checkboxReturn=*/0, /*options=*/KMessageBox::Notify/*, const TQString &details=TQString()*/); basketsList, /*ask=*/"", /*checkboxReturn=*/0, /*options=*/KMessageBox::Notify/*, const TQString &details=TQString()*/);
#endif #endif
int really = KMessageBox::questionYesNo( this, int really = KMessageBox::questionYesNo( this,
i18n("<qt>Do you really want to remove the basket <b>%1</b> and its contents?</qt>") i18n("<qt>Do you really want to remove the basket <b>%1</b> and its contents?</qt>")
.tqarg(Tools::textToHTMLWithoutP(basket->basketName())), .arg(Tools::textToHTMLWithoutP(basket->basketName())),
i18n("Remove Basket") i18n("Remove Basket")
#if KDE_IS_VERSION( 3, 2, 90 ) // KDE 3.3.x #if KDE_IS_VERSION( 3, 2, 90 ) // KDE 3.3.x
, KGuiItem(i18n("&Remove Basket"), "editdelete"), KStdGuiItem::cancel()); , KGuiItem(i18n("&Remove Basket"), "editdelete"), KStdGuiItem::cancel());
@ -1721,8 +1721,8 @@ void BNPView::delBasket()
TQStringList basketsList = listViewItemForBasket(basket)->childNamesTree(); TQStringList basketsList = listViewItemForBasket(basket)->childNamesTree();
if (basketsList.count() > 0) { if (basketsList.count() > 0) {
int deleteChilds = KMessageBox::questionYesNoList( this, int deleteChilds = KMessageBox::questionYesNoList( this,
i18n("<qt><b>%1</b> have the following tqchildren baskets.<br>Do you want to remove them too?</qt>") i18n("<qt><b>%1</b> have the following children baskets.<br>Do you want to remove them too?</qt>")
.tqarg(Tools::textToHTMLWithoutP(basket->basketName())), .arg(Tools::textToHTMLWithoutP(basket->basketName())),
basketsList, basketsList,
i18n("Remove Children Baskets") i18n("Remove Children Baskets")
#if KDE_IS_VERSION( 3, 2, 90 ) // KDE 3.3.x #if KDE_IS_VERSION( 3, 2, 90 ) // KDE 3.3.x
@ -1808,7 +1808,7 @@ void BNPView::saveAsArchive()
int result = KMessageBox::questionYesNoCancel( int result = KMessageBox::questionYesNoCancel(
this, this,
"<qt>" + i18n("The file <b>%1</b> already exists. Do you really want to override it?") "<qt>" + i18n("The file <b>%1</b> already exists. Do you really want to override it?")
.tqarg(KURL(destination).fileName()), .arg(KURL(destination).fileName()),
i18n("Override File?"), i18n("Override File?"),
KGuiItem(i18n("&Override"), "filesave") KGuiItem(i18n("&Override"), "filesave")
); );
@ -1955,7 +1955,7 @@ void BNPView::showPassiveDroppedDelayed()
TQPixmap contentsPixmap = NoteDrag::feedbackPixmap(m_passiveDroppedSelection); TQPixmap contentsPixmap = NoteDrag::feedbackPixmap(m_passiveDroppedSelection);
TQMimeSourceFactory::defaultFactory()->setPixmap("_passivepopup_image_", contentsPixmap); TQMimeSourceFactory::defaultFactory()->setPixmap("_passivepopup_image_", contentsPixmap);
m_passivePopup->setView( m_passivePopup->setView(
title.tqarg(Tools::textToHTMLWithoutP(currentBasket()->basketName())), title.arg(Tools::textToHTMLWithoutP(currentBasket()->basketName())),
(contentsPixmap.isNull() ? "" : "<img src=\"_passivepopup_image_\">"), (contentsPixmap.isNull() ? "" : "<img src=\"_passivepopup_image_\">"),
kapp->iconLoader()->loadIcon(currentBasket()->icon(), KIcon::NoGroup, 16, KIcon::DefaultState, 0L, true)); kapp->iconLoader()->loadIcon(currentBasket()->icon(), KIcon::NoGroup, 16, KIcon::DefaultState, 0L, true));
m_passivePopup->show(); m_passivePopup->show();
@ -1967,8 +1967,8 @@ void BNPView::showPassiveImpossible(const TQString &message)
m_passivePopup = new KPassivePopup(Settings::useSystray() ? (TQWidget*)Global::systemTray : (TQWidget*)this); m_passivePopup = new KPassivePopup(Settings::useSystray() ? (TQWidget*)Global::systemTray : (TQWidget*)this);
m_passivePopup->setView( m_passivePopup->setView(
TQString("<font color=red>%1</font>") TQString("<font color=red>%1</font>")
.tqarg(i18n("Basket <i>%1</i> is locked")) .arg(i18n("Basket <i>%1</i> is locked"))
.tqarg(Tools::textToHTMLWithoutP(currentBasket()->basketName())), .arg(Tools::textToHTMLWithoutP(currentBasket()->basketName())),
message, message,
kapp->iconLoader()->loadIcon(currentBasket()->icon(), KIcon::NoGroup, 16, KIcon::DefaultState, 0L, true)); kapp->iconLoader()->loadIcon(currentBasket()->icon(), KIcon::NoGroup, 16, KIcon::DefaultState, 0L, true));
m_passivePopup->show(); m_passivePopup->show();
@ -1992,7 +1992,7 @@ void BNPView::showPassiveContent(bool forceShow/* = false*/)
m_passivePopup->setView( m_passivePopup->setView(
"<qt>" + kapp->makeStdCaption( currentBasket()->isLocked() "<qt>" + kapp->makeStdCaption( currentBasket()->isLocked()
? TQString("%1 <font color=gray30>%2</font>") ? TQString("%1 <font color=gray30>%2</font>")
.tqarg(Tools::textToHTMLWithoutP(currentBasket()->basketName()), i18n("(Locked)")) .arg(Tools::textToHTMLWithoutP(currentBasket()->basketName()), i18n("(Locked)"))
: Tools::textToHTMLWithoutP(currentBasket()->basketName()) ), : Tools::textToHTMLWithoutP(currentBasket()->basketName()) ),
message, message,
kapp->iconLoader()->loadIcon(currentBasket()->icon(), KIcon::NoGroup, 16, KIcon::DefaultState, 0L, true)); kapp->iconLoader()->loadIcon(currentBasket()->icon(), KIcon::NoGroup, 16, KIcon::DefaultState, 0L, true));

@ -82,7 +82,7 @@
"But, all is not lost! You could potentially help us fix the crash. " "But, all is not lost! You could potentially help us fix the crash. "
"Information describing the crash is below, so just click send, " "Information describing the crash is below, so just click send, "
"or if you have time, write a brief description of how the crash happened first.\n\n" "or if you have time, write a brief description of how the crash happened first.\n\n"
"Many thanks." ).tqarg(kapp->aboutData()->programName()) + "\n\n"; "Many thanks." ).arg(kapp->aboutData()->programName()) + "\n\n";
body += "\n\n\n\n\n\n" + i18n( body += "\n\n\n\n\n\n" + i18n(
"The information below is to help the developers identify the problem, " "The information below is to help the developers identify the problem, "
"please do not modify it." ) + "\n\n\n\n"; "please do not modify it." ) + "\n\n\n\n";
@ -96,9 +96,9 @@
;// "TagLib: %2.%3.%4\n"; ;// "TagLib: %2.%3.%4\n";
/* body = body /* body = body
.tqarg( TAGLIB_MAJOR_VERSION ) .arg( TAGLIB_MAJOR_VERSION )
.tqarg( TAGLIB_MINOR_VERSION ) .arg( TAGLIB_MINOR_VERSION )
.tqarg( TAGLIB_PATCH_VERSION );*/ .arg( TAGLIB_PATCH_VERSION );*/
#ifdef NDEBUG #ifdef NDEBUG
body += "NDEBUG: true"; body += "NDEBUG: true";
@ -163,10 +163,10 @@
if( totalFrames > 0 ) { if( totalFrames > 0 ) {
const double validity = double(validFrames) / totalFrames; const double validity = double(validFrames) / totalFrames;
subject += TQString("[validity: %1]").tqarg( validity, 0, 'f', 2 ); subject += TQString("[validity: %1]").arg( validity, 0, 'f', 2 );
if( validity <= 0.5 ) useful = false; if( validity <= 0.5 ) useful = false;
} }
subject += TQString("[frames: %1]").tqarg( totalFrames, 3 /*padding*/ ); subject += TQString("[frames: %1]").arg( totalFrames, 3 /*padding*/ );
if( bt.find( TQRegExp(" at \\w*\\.cpp:\\d+\n") ) >= 0 ) if( bt.find( TQRegExp(" at \\w*\\.cpp:\\d+\n") ) >= 0 )
subject += "[line numbers]"; subject += "[line numbers]";
@ -174,7 +174,7 @@
else else
useful = false; useful = false;
// subject += TQString("[%1]").tqarg( AmarokConfig::soundSystem().remove( TQRegExp("-?engine") ) ); // subject += TQString("[%1]").arg( AmarokConfig::soundSystem().remove( TQRegExp("-?engine") ) );
// debug() << subject << endl; // debug() << subject << endl;
@ -206,7 +206,7 @@
std::cout << ("\n" + i18n( "%1 has crashed! We're sorry about this.\n\n" std::cout << ("\n" + i18n( "%1 has crashed! We're sorry about this.\n\n"
"But, all is not lost! Perhaps an upgrade is already available " "But, all is not lost! Perhaps an upgrade is already available "
"which fixes the problem. Please check your distribution's software repository." ) "which fixes the problem. Please check your distribution's software repository." )
.tqarg(kapp->aboutData()->programName())).local8Bit().data() << std::endl; .arg(kapp->aboutData()->programName())).local8Bit().data() << std::endl;
} }
//_exit() exits immediately, otherwise this //_exit() exits immediately, otherwise this

@ -131,7 +131,7 @@ void FormatImporter::importBaskets()
if (folderName.startsWith("/")) { // It was a folder mirror: if (folderName.startsWith("/")) { // It was a folder mirror:
KMessageBox::information(0, i18n("<p>Folder mirroring is not possible anymore (see <a href='http://basket.kde.org/'>basket.kde.org</a> for more information).</p>" KMessageBox::information(0, i18n("<p>Folder mirroring is not possible anymore (see <a href='http://basket.kde.org/'>basket.kde.org</a> for more information).</p>"
"<p>The folder <b>%1</b> has been copied for the basket needs. You can either delete this folder or delete the basket, or use both. But remember that " "<p>The folder <b>%1</b> has been copied for the basket needs. You can either delete this folder or delete the basket, or use both. But remember that "
"modifying one will not modify the other anymore as they are now separate entities.</p>").tqarg(folderName), i18n("Folder Mirror Import"), "modifying one will not modify the other anymore as they are now separate entities.</p>").arg(folderName), i18n("Folder Mirror Import"),
"", KMessageBox::AllowLink); "", KMessageBox::AllowLink);
// Also modify folderName to be only the folder name and not the full path anymore: // Also modify folderName to be only the folder name and not the full path anymore:
TQString newFolderName = folderName; TQString newFolderName = folderName;
@ -259,7 +259,7 @@ TQDomElement FormatImporter::importBasket(const TQString &folderName)
"Name=%2\n" "Name=%2\n"
"Icon=%3\n" "Icon=%3\n"
"Encoding=UTF-8\n" "Encoding=UTF-8\n"
"Type=Application\n").tqarg(runCommand, title, icon.isEmpty() ? TQString("exec") : icon); "Type=Application\n").arg(runCommand, title, icon.isEmpty() ? TQString("exec") : icon);
TQString launcherFileName = Tools::fileNameForNewFile("launcher.desktop", Global::basketsFolder() + folderName /*+ "/"*/); TQString launcherFileName = Tools::fileNameForNewFile("launcher.desktop", Global::basketsFolder() + folderName /*+ "/"*/);
TQString launcherFullPath = Global::basketsFolder() + folderName /*+ "/"*/ + launcherFileName; TQString launcherFullPath = Global::basketsFolder() + folderName /*+ "/"*/ + launcherFileName;
TQFile file(launcherFullPath); TQFile file(launcherFullPath);

@ -63,7 +63,7 @@ HTMLExporter::HTMLExporter(Basket *basket)
int result = KMessageBox::questionYesNoCancel( int result = KMessageBox::questionYesNoCancel(
0, 0,
"<qt>" + i18n("The file <b>%1</b> already exists. Do you really want to override it?") "<qt>" + i18n("The file <b>%1</b> already exists. Do you really want to override it?")
.tqarg(KURL(destination).fileName()), .arg(KURL(destination).fileName()),
i18n("Override File?"), i18n("Override File?"),
KGuiItem(i18n("&Override"), "filesave") KGuiItem(i18n("&Override"), "filesave")
); );
@ -111,7 +111,7 @@ void HTMLExporter::prepareExport(Basket *basket, const TQString &fullPath)
withBasketTree = (item->firstChild() != 0); withBasketTree = (item->firstChild() != 0);
// Create and empty the files folder: // Create and empty the files folder:
TQString filesFolderPath = i18n("HTML export folder (files)", "%1_files").tqarg(filePath) + "/"; // eg.: "/home/seb/foo.html_files/" TQString filesFolderPath = i18n("HTML export folder (files)", "%1_files").arg(filePath) + "/"; // eg.: "/home/seb/foo.html_files/"
Tools::deleteRecursively(filesFolderPath); Tools::deleteRecursively(filesFolderPath);
TQDir dir; TQDir dir;
dir.mkdir(filesFolderPath); dir.mkdir(filesFolderPath);
@ -136,7 +136,7 @@ void HTMLExporter::exportBasket(Basket *basket, bool isSubBasket)
} }
// Compute the absolute & relative paths for this basket: // Compute the absolute & relative paths for this basket:
filesFolderPath = i18n("HTML export folder (files)", "%1_files").tqarg(filePath) + "/"; filesFolderPath = i18n("HTML export folder (files)", "%1_files").arg(filePath) + "/";
if (isSubBasket) { if (isSubBasket) {
basketFilePath = basketsFolderPath + basket->folderName().left(basket->folderName().length() - 1) + ".html"; basketFilePath = basketsFolderPath + basket->folderName().left(basket->folderName().length() - 1) + ".html";
filesFolderName = "../"; filesFolderName = "../";
@ -145,7 +145,7 @@ void HTMLExporter::exportBasket(Basket *basket, bool isSubBasket)
basketsFolderName = ""; basketsFolderName = "";
} else { } else {
basketFilePath = filePath; basketFilePath = filePath;
filesFolderName = i18n("HTML export folder (files)", "%1_files").tqarg(KURL(filePath).fileName()) + "/"; filesFolderName = i18n("HTML export folder (files)", "%1_files").arg(KURL(filePath).fileName()) + "/";
dataFolderName = filesFolderName + i18n("HTML export folder (data)", "data") + "/"; dataFolderName = filesFolderName + i18n("HTML export folder (data)", "data") + "/";
dataFolderPath = filesFolderPath + i18n("HTML export folder (data)", "data") + "/"; dataFolderPath = filesFolderPath + i18n("HTML export folder (data)", "data") + "/";
basketsFolderName = filesFolderName + i18n("HTML export folder (baskets)", "baskets") + "/"; basketsFolderName = filesFolderName + i18n("HTML export folder (baskets)", "baskets") + "/";
@ -289,7 +289,7 @@ void HTMLExporter::exportBasket(Basket *basket, bool isSubBasket)
// TODO: Make sure only filtered notes are exported! // TODO: Make sure only filtered notes are exported!
// if (decoration()->filterData().isFiltering) // if (decoration()->filterData().isFiltering)
// stream << // stream <<
// " <p>" << i18n("Notes matching the filter &quot;%1&quot;:").tqarg(Tools::textToHTMLWithoutP(decoration()->filterData().string)) << "</p>\n"; // " <p>" << i18n("Notes matching the filter &quot;%1&quot;:").arg(Tools::textToHTMLWithoutP(decoration()->filterData().string)) << "</p>\n";
stream << stream <<
" <div class=\"basketSurrounder\">\n"; " <div class=\"basketSurrounder\">\n";
@ -315,10 +315,10 @@ void HTMLExporter::exportBasket(Basket *basket, bool isSubBasket)
" </div>\n"; " </div>\n";
stream << TQString( stream << TQString(
" </div>\n" " </div>\n"
" <p class=\"credits\">%1</p>\n").tqarg( " <p class=\"credits\">%1</p>\n").arg(
i18n("Made with %1, a KDE tool to take notes and keep information at hand.") i18n("Made with %1, a KDE tool to take notes and keep information at hand.")
.tqarg("<a href=\"http://basket.kde.org/\">%1</a> %2") .arg("<a href=\"http://basket.kde.org/\">%1</a> %2")
.tqarg(kapp->aboutData()->programName(), VERSION)); .arg(kapp->aboutData()->programName(), VERSION));
// Copy a transparent GIF image in the folder, needed for the JavaScript hack: // Copy a transparent GIF image in the folder, needed for the JavaScript hack:
TQString gifFileName = "spacer.gif"; TQString gifFileName = "spacer.gif";
@ -396,7 +396,7 @@ void HTMLExporter::exportNote(Note *note, int indent)
widthValue = 1; widthValue = 1;
if (widthValue > 100) if (widthValue > 100)
widthValue = 100; widthValue = 100;
width = TQString(" width=\"%1%\"").tqarg(TQString::number(widthValue)); width = TQString(" width=\"%1%\"").arg(TQString::number(widthValue));
} }
stream << spaces.fill(' ', indent) << "<td class=\"column\"" << width << ">\n"; stream << spaces.fill(' ', indent) << "<td class=\"column\"" << width << ">\n";

@ -758,7 +758,7 @@ void KColorCombo2::fontChange(const TQFont &oldFont)
{ {
// Since the color-rectangle is the same height of the text, we should resize it if the font change: // Since the color-rectangle is the same height of the text, we should resize it if the font change:
updateComboBox(); updateComboBox();
TQComboBox::fontChange(oldFont); // To update tqgeometry. TQComboBox::fontChange(oldFont); // To update geometry.
} }
void KColorCombo2::virtual_hook(int /*id*/, void */*data*/) void KColorCombo2::virtual_hook(int /*id*/, void */*data*/)

@ -139,7 +139,7 @@ void KGpgMe::init(gpgme_protocol_t proto)
err = gpgme_engine_check_version(proto); err = gpgme_engine_check_version(proto);
if(err) { if(err) {
KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2") KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2")
.tqarg(gpgme_strsource(err)).tqarg(gpgme_strerror(err))); .arg(gpgme_strsource(err)).arg(gpgme_strerror(err)));
} }
} }
@ -221,7 +221,7 @@ KGpgKeyList KGpgMe::keys(bool privateKeys /* = false */) const
if(err) { if(err) {
KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2") KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2")
.tqarg(gpgme_strsource(err)).tqarg(gpgme_strerror(err))); .arg(gpgme_strsource(err)).arg(gpgme_strerror(err)));
} }
else { else {
result = gpgme_op_keylist_result(m_ctx); result = gpgme_op_keylist_result(m_ctx);
@ -263,8 +263,8 @@ bool KGpgMe::encrypt(const TQByteArray& inBuffer, TQ_ULONG length,
result = gpgme_op_encrypt_result(m_ctx); result = gpgme_op_encrypt_result(m_ctx);
if (result->invalid_recipients) { if (result->invalid_recipients) {
KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2") KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2")
.tqarg(i18n("That public key is not meant for encryption")) .arg(i18n("That public key is not meant for encryption"))
.tqarg(result->invalid_recipients->fpr)); .arg(result->invalid_recipients->fpr));
} }
else { else {
err = readToBuffer(out, outBuffer); err = readToBuffer(out, outBuffer);
@ -276,7 +276,7 @@ bool KGpgMe::encrypt(const TQByteArray& inBuffer, TQ_ULONG length,
} }
if(err != GPG_ERR_NO_ERROR && err != GPG_ERR_CANCELED) { if(err != GPG_ERR_NO_ERROR && err != GPG_ERR_CANCELED) {
KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2") KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2")
.tqarg(gpgme_strsource(err)).tqarg(gpgme_strerror(err))); .arg(gpgme_strsource(err)).arg(gpgme_strerror(err)));
} }
if(err != GPG_ERR_NO_ERROR) if(err != GPG_ERR_NO_ERROR)
clearCache(); clearCache();
@ -306,8 +306,8 @@ bool KGpgMe::decrypt(const TQByteArray& inBuffer, TQByteArray* outBuffer)
result = gpgme_op_decrypt_result(m_ctx); result = gpgme_op_decrypt_result(m_ctx);
if(result->unsupported_algorithm) { if(result->unsupported_algorithm) {
KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2") KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2")
.tqarg(i18n("Unsupported algorithm")) .arg(i18n("Unsupported algorithm"))
.tqarg(result->unsupported_algorithm)); .arg(result->unsupported_algorithm));
} }
else { else {
err = readToBuffer(out, outBuffer); err = readToBuffer(out, outBuffer);
@ -318,7 +318,7 @@ bool KGpgMe::decrypt(const TQByteArray& inBuffer, TQByteArray* outBuffer)
} }
if(err != GPG_ERR_NO_ERROR && err != GPG_ERR_CANCELED) { if(err != GPG_ERR_NO_ERROR && err != GPG_ERR_CANCELED) {
KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2") KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), TQString("%1: %2")
.tqarg(gpgme_strsource(err)).tqarg(gpgme_strerror(err))); .arg(gpgme_strsource(err)).arg(gpgme_strerror(err)));
} }
if(err != GPG_ERR_NO_ERROR) if(err != GPG_ERR_NO_ERROR)
clearCache(); clearCache();
@ -346,7 +346,7 @@ gpgme_error_t KGpgMe::readToBuffer(gpgme_data_t in, TQByteArray* outBuffer) cons
if(buf) { if(buf) {
while((ret = gpgme_data_read(in, buf, BUF_SIZE)) > 0) { while((ret = gpgme_data_read(in, buf, BUF_SIZE)) > 0) {
uint size = outBuffer->size(); uint size = outBuffer->size();
if(outBuffer->tqresize(size + ret)) if(outBuffer->resize(size + ret))
memcpy(outBuffer->data() + size, buf, ret); memcpy(outBuffer->data() + size, buf, ret);
} }
if(ret < 0) if(ret < 0)

@ -180,7 +180,7 @@ void KIconCanvas::slotLoadFiles()
// Calling kapp->processEvents() makes the iconview flicker like hell // Calling kapp->processEvents() makes the iconview flicker like hell
// (it's being repainted once for every new item), so we don't do this. // (it's being repainted once for every new item), so we don't do this.
// Instead, we directly tqrepaint the progress bar without going through // Instead, we directly repaint the progress bar without going through
// the event-loop. We do that just once for every 10th item so that // the event-loop. We do that just once for every 10th item so that
// the progress bar doesn't flicker in turn. (pfeiffer) // the progress bar doesn't flicker in turn. (pfeiffer)
// FIXME: TQt4 will have double buffering // FIXME: TQt4 will have double buffering

@ -430,7 +430,7 @@ void LikeBack::showInformationMessage()
"<p><b>" + (isDevelopmentVersion(d->aboutData->version()) ? "<p><b>" + (isDevelopmentVersion(d->aboutData->version()) ?
i18n("Welcome to this testing version of %1.") : i18n("Welcome to this testing version of %1.") :
i18n("Welcome to %1.") i18n("Welcome to %1.")
).tqarg(d->aboutData->programName()) + "</b></p>" ).arg(d->aboutData->programName()) + "</b></p>"
"<p>" + i18n("To help us improve it, your comments are important.") + "</p>" "<p>" + i18n("To help us improve it, your comments are important.") + "</p>"
"<p>" + "<p>" +
((buttons & LikeBack::Like) && (buttons & LikeBack::Dislike) ? ((buttons & LikeBack::Like) && (buttons & LikeBack::Dislike) ?
@ -740,7 +740,7 @@ LikeBackDialog::~LikeBackDialog()
TQString LikeBackDialog::introductionText() TQString LikeBackDialog::introductionText()
{ {
TQString text = "<p>" + i18n("Please provide a brief description of your opinion of %1.").tqarg(m_likeBack->aboutData()->programName()) + " "; TQString text = "<p>" + i18n("Please provide a brief description of your opinion of %1.").arg(m_likeBack->aboutData()->programName()) + " ";
TQString languagesMessage = ""; TQString languagesMessage = "";
if (!m_likeBack->acceptedLocales().isEmpty() && !m_likeBack->acceptedLanguagesMessage().isEmpty()) { if (!m_likeBack->acceptedLocales().isEmpty() && !m_likeBack->acceptedLanguagesMessage().isEmpty()) {
@ -760,7 +760,7 @@ TQString LikeBackDialog::introductionText()
// TODO: Replace the URL with a localized one: // TODO: Replace the URL with a localized one:
text += languagesMessage + " " + text += languagesMessage + " " +
i18n("You may be able to use an <a href=\"%1\">online translation tool</a>.") i18n("You may be able to use an <a href=\"%1\">online translation tool</a>.")
.tqarg("http://www.google.com/language_tools?hl=" + KGlobal::locale()->language()) .arg("http://www.google.com/language_tools?hl=" + KGlobal::locale()->language())
+ " "; + " ";
// If both "I Like" and "I Dislike" buttons are shown and one is clicked: // If both "I Like" and "I Dislike" buttons are shown and one is clicked:

@ -132,7 +132,7 @@ LinkLook* LinkLook::lookForURL(const KURL &url)
TQString LinkLook::toCSS(const TQString &cssClass, const TQColor &defaultTextColor) const TQString LinkLook::toCSS(const TQString &cssClass, const TQColor &defaultTextColor) const
{ {
// Set the link class: // Set the link class:
TQString css = TQString(" .%1 a { display: block; width: 100%;").tqarg(cssClass); TQString css = TQString(" .%1 a { display: block; width: 100%;").arg(cssClass);
if (underlineOutside()) if (underlineOutside())
css += " text-decoration: underline;"; css += " text-decoration: underline;";
else else
@ -142,7 +142,7 @@ TQString LinkLook::toCSS(const TQString &cssClass, const TQColor &defaultTextCol
if (m_bold == true) if (m_bold == true)
css += " font-weight: bold;"; css += " font-weight: bold;";
TQColor textColor = (color().isValid() || m_useLinkColor ? effectiveColor() : defaultTextColor); TQColor textColor = (color().isValid() || m_useLinkColor ? effectiveColor() : defaultTextColor);
css += TQString(" color: %1; }\n").tqarg(textColor.name()); css += TQString(" color: %1; }\n").arg(textColor.name());
// Set the hover state class: // Set the hover state class:
TQString hover; TQString hover;
@ -153,12 +153,12 @@ TQString LinkLook::toCSS(const TQString &cssClass, const TQColor &defaultTextCol
if (effectiveHoverColor() != effectiveColor()) { if (effectiveHoverColor() != effectiveColor()) {
if (!hover.isEmpty()) if (!hover.isEmpty())
hover += " "; hover += " ";
hover += TQString("color: %4;").tqarg(effectiveHoverColor().name()); hover += TQString("color: %4;").arg(effectiveHoverColor().name());
} }
// But include it only if it contain a different style than non-hover state: // But include it only if it contain a different style than non-hover state:
if (!hover.isEmpty()) if (!hover.isEmpty())
css += TQString(" .%1 a:hover { %2 }\n").tqarg(cssClass, hover); css += TQString(" .%1 a:hover { %2 }\n").arg(cssClass, hover);
return css; return css;
} }
@ -246,7 +246,7 @@ void LinkLabel::setAlign(int hAlign, int vAlign)
if (!m_look) if (!m_look)
return; return;
// Define tqalignment flags : // Define alignment flags :
//FIXME TODO: Use directly flags ! //FIXME TODO: Use directly flags !
int hFlag, vFlag, wBreak; int hFlag, vFlag, wBreak;
switch (hAlign) { switch (hAlign) {
@ -540,16 +540,16 @@ TQString LinkDisplay::toHtml(HTMLExporter *exporter, const KURL &url, const TQSt
TQString fullPath = exporter->iconsFolderPath + fileName; TQString fullPath = exporter->iconsFolderPath + fileName;
m_preview.save(fullPath, "PNG"); m_preview.save(fullPath, "PNG");
linkIcon = TQString("<img src=\"%1\" width=\"%2\" height=\"%3\" alt=\"\">") linkIcon = TQString("<img src=\"%1\" width=\"%2\" height=\"%3\" alt=\"\">")
.tqarg(exporter->iconsFolderName + fileName, TQString::number(m_preview.width()), TQString::number(m_preview.height())); .arg(exporter->iconsFolderName + fileName, TQString::number(m_preview.width()), TQString::number(m_preview.height()));
} else { } else {
linkIcon = exporter->iconsFolderName + exporter->copyIcon(m_icon, m_look->iconSize()); linkIcon = exporter->iconsFolderName + exporter->copyIcon(m_icon, m_look->iconSize());
linkIcon = TQString("<img src=\"%1\" width=\"%2\" height=\"%3\" alt=\"\">") linkIcon = TQString("<img src=\"%1\" width=\"%2\" height=\"%3\" alt=\"\">")
.tqarg(linkIcon, TQString::number(m_look->iconSize()), TQString::number(m_look->iconSize())); .arg(linkIcon, TQString::number(m_look->iconSize()), TQString::number(m_look->iconSize()));
} }
TQString linkTitle = Tools::textToHTMLWithoutP(title.isEmpty() ? m_title : title); TQString linkTitle = Tools::textToHTMLWithoutP(title.isEmpty() ? m_title : title);
return TQString("<a href=\"%1\">%2 %3</a>").tqarg(url.prettyURL(), linkIcon, linkTitle); return TQString("<a href=\"%1\">%2 %3</a>").arg(url.prettyURL(), linkIcon, linkTitle);
} }
/** LinkLookEditWidget **/ /** LinkLookEditWidget **/
@ -614,7 +614,7 @@ LinkLookEditWidget::LinkLookEditWidget(KCModule *module, const TQString exTitle,
"<p>If you do not want the application to create notes depending on the content of the files you drop, " "<p>If you do not want the application to create notes depending on the content of the files you drop, "
"go to the \"General\" page and uncheck \"Image or animation\" in the \"View Content of Added Files for the Following Types\" group.</p>") "go to the \"General\" page and uncheck \"Image or animation\" in the \"View Content of Added Files for the Following Types\" group.</p>")
// TODO: Note: you can resize down maximum size of images... // TODO: Note: you can resize down maximum size of images...
.tqarg(kapp->aboutData()->programName(), kapp->aboutData()->programName()), .arg(kapp->aboutData()->programName(), kapp->aboutData()->programName()),
this); this);
gl->addWidget(m_label, 4, 0); gl->addWidget(m_label, 4, 0);
gl->addWidget(m_preview, 4, 1); gl->addWidget(m_preview, 4, 1);

@ -307,7 +307,7 @@ bool MainWindow::queryClose()
bool MainWindow::askForQuit() bool MainWindow::askForQuit()
{ {
TQString message = i18n("<p>Do you really want to quit %1?</p>").tqarg(kapp->aboutData()->programName()); TQString message = i18n("<p>Do you really want to quit %1?</p>").arg(kapp->aboutData()->programName());
if (Settings::useSystray()) if (Settings::useSystray())
message += i18n("<p>Notice that you do not have to quit the application before ending your KDE session. " message += i18n("<p>Notice that you do not have to quit the application before ending your KDE session. "
"If you end your session while the application is still running, the application will be reloaded the next time you log in.</p>"); "If you end your session while the application is still running, the application will be reloaded the next time you log in.</p>");

@ -138,7 +138,7 @@ void NoteContent::contentChanged(int newMinWidth)
m_minWidth = newMinWidth; m_minWidth = newMinWidth;
if (note()) { if (note()) {
// note()->unbufferize(); // note()->unbufferize();
note()->requestRetqlayout(); // TODO: It should re-set the width! m_width = 0 ? contentChanged: setWidth, geteight, if size havent changed, only tqrepaint and not retqlayout note()->requestRetqlayout(); // TODO: It should re-set the width! m_width = 0 ? contentChanged: setWidth, geteight, if size havent changed, only repaint and not retqlayout
} }
} }
@ -210,7 +210,7 @@ TQString LinkContent::toText(const TQString &/*cuttedFullPath*/)
else if (title().isEmpty()) else if (title().isEmpty())
return url().prettyURL(); return url().prettyURL();
else else
return TQString("%1 <%2>").tqarg(title(), url().prettyURL()); return TQString("%1 <%2>").arg(title(), url().prettyURL());
} }
TQString ColorContent::toText(const TQString &/*cuttedFullPath*/) { return color().name(); } TQString ColorContent::toText(const TQString &/*cuttedFullPath*/) { return color().name(); }
TQString UnknownContent::toText(const TQString &/*cuttedFullPath*/) { return ""; } TQString UnknownContent::toText(const TQString &/*cuttedFullPath*/) { return ""; }
@ -223,25 +223,25 @@ TQString HtmlContent::toHtml(const TQString &/*imageName*/, const TQString &/*cu
{ return Tools::htmlToParagraph(html()); } { return Tools::htmlToParagraph(html()); }
TQString ImageContent::toHtml(const TQString &/*imageName*/, const TQString &cuttedFullPath) TQString ImageContent::toHtml(const TQString &/*imageName*/, const TQString &cuttedFullPath)
{ return TQString("<img src=\"%1\">").tqarg(cuttedFullPath.isEmpty() ? fullPath() : cuttedFullPath); } { return TQString("<img src=\"%1\">").arg(cuttedFullPath.isEmpty() ? fullPath() : cuttedFullPath); }
TQString AnimationContent::toHtml(const TQString &/*imageName*/, const TQString &cuttedFullPath) TQString AnimationContent::toHtml(const TQString &/*imageName*/, const TQString &cuttedFullPath)
{ return TQString("<img src=\"%1\">").tqarg(cuttedFullPath.isEmpty() ? fullPath() : cuttedFullPath); } { return TQString("<img src=\"%1\">").arg(cuttedFullPath.isEmpty() ? fullPath() : cuttedFullPath); }
TQString SoundContent::toHtml(const TQString &/*imageName*/, const TQString &cuttedFullPath) TQString SoundContent::toHtml(const TQString &/*imageName*/, const TQString &cuttedFullPath)
{ return TQString("<a href=\"%1\">%2</a>").tqarg((cuttedFullPath.isEmpty() ? fullPath() : cuttedFullPath), fileName()); } // With the icon? { return TQString("<a href=\"%1\">%2</a>").arg((cuttedFullPath.isEmpty() ? fullPath() : cuttedFullPath), fileName()); } // With the icon?
TQString FileContent::toHtml(const TQString &/*imageName*/, const TQString &cuttedFullPath) TQString FileContent::toHtml(const TQString &/*imageName*/, const TQString &cuttedFullPath)
{ return TQString("<a href=\"%1\">%2</a>").tqarg((cuttedFullPath.isEmpty() ? fullPath() : cuttedFullPath), fileName()); } // With the icon? { return TQString("<a href=\"%1\">%2</a>").arg((cuttedFullPath.isEmpty() ? fullPath() : cuttedFullPath), fileName()); } // With the icon?
TQString LinkContent::toHtml(const TQString &/*imageName*/, const TQString &/*cuttedFullPath*/) TQString LinkContent::toHtml(const TQString &/*imageName*/, const TQString &/*cuttedFullPath*/)
{ return TQString("<a href=\"%1\">%2</a>").tqarg(url().prettyURL(), title()); } // With the icon? { return TQString("<a href=\"%1\">%2</a>").arg(url().prettyURL(), title()); } // With the icon?
TQString LauncherContent::toHtml(const TQString &/*imageName*/, const TQString &cuttedFullPath) TQString LauncherContent::toHtml(const TQString &/*imageName*/, const TQString &cuttedFullPath)
{ return TQString("<a href=\"%1\">%2</a>").tqarg((cuttedFullPath.isEmpty() ? fullPath() : cuttedFullPath), name()); } // With the icon? { return TQString("<a href=\"%1\">%2</a>").arg((cuttedFullPath.isEmpty() ? fullPath() : cuttedFullPath), name()); } // With the icon?
TQString ColorContent::toHtml(const TQString &/*imageName*/, const TQString &/*cuttedFullPath*/) TQString ColorContent::toHtml(const TQString &/*imageName*/, const TQString &/*cuttedFullPath*/)
{ return TQString("<span style=\"color: %1\">%2</span>").tqarg(color().name(), color().name()); } { return TQString("<span style=\"color: %1\">%2</span>").arg(color().name(), color().name()); }
TQString UnknownContent::toHtml(const TQString &/*imageName*/, const TQString &/*cuttedFullPath*/) TQString UnknownContent::toHtml(const TQString &/*imageName*/, const TQString &/*cuttedFullPath*/)
{ return ""; } { return ""; }
@ -804,7 +804,7 @@ bool ImageContent::saveToFile()
void ImageContent::toolTipInfos(TQStringList *keys, TQStringList *values) void ImageContent::toolTipInfos(TQStringList *keys, TQStringList *values)
{ {
keys->append(i18n("Size")); keys->append(i18n("Size"));
values->append(i18n("%1 by %2 pixels").tqarg(TQString::number(m_pixmap.width()), TQString::number(m_pixmap.height()))); values->append(i18n("%1 by %2 pixels").arg(TQString::number(m_pixmap.width()), TQString::number(m_pixmap.height())));
} }
TQString ImageContent::messageWhenOpenning(OpenMessage where) TQString ImageContent::messageWhenOpenning(OpenMessage where)
@ -983,7 +983,7 @@ void AnimationContent::movieStatus(int status)
void AnimationContent::exportToHTML(HTMLExporter *exporter, int /*indent*/) void AnimationContent::exportToHTML(HTMLExporter *exporter, int /*indent*/)
{ {
exporter->stream << TQString("<img src=\"%1\" width=\"%2\" height=\"%3\" alt=\"\">") exporter->stream << TQString("<img src=\"%1\" width=\"%2\" height=\"%3\" alt=\"\">")
.tqarg( exporter->dataFolderName + exporter->copyFile(fullPath(), /*createIt=*/true), .arg( exporter->dataFolderName + exporter->copyFile(fullPath(), /*createIt=*/true),
TQString::number(movie().framePixmap().size().width()), TQString::number(movie().framePixmap().size().width()),
TQString::number(movie().framePixmap().size().height()) ); TQString::number(movie().framePixmap().size().height()) );
} }
@ -1427,7 +1427,7 @@ void LauncherContent::toolTipInfos(TQStringList *keys, TQStringList *values)
TQString exec = service.exec(); TQString exec = service.exec();
if (service.terminal()) if (service.terminal())
exec = i18n("%1 <i>(run in terminal)</i>").tqarg(exec); exec = i18n("%1 <i>(run in terminal)</i>").arg(exec);
if (!service.comment().isEmpty() && service.comment() != service.name()) { if (!service.comment().isEmpty() && service.comment() != service.name()) {
keys->append(i18n("Comment")); keys->append(i18n("Comment"));
@ -1570,10 +1570,10 @@ void ColorContent::toolTipInfos(TQStringList *keys, TQStringList *values)
m_color.getHsv(&hue, &saturation, &value); m_color.getHsv(&hue, &saturation, &value);
keys->append(i18n("RGB Colorspace: Red/Green/Blue", "RGB")); keys->append(i18n("RGB Colorspace: Red/Green/Blue", "RGB"));
values->append(i18n("<i>Red</i>: %1, <i>Green</i>: %2, <i>Blue</i>: %3,").tqarg(TQString::number(m_color.red()), TQString::number(m_color.green()), TQString::number(m_color.blue()))); values->append(i18n("<i>Red</i>: %1, <i>Green</i>: %2, <i>Blue</i>: %3,").arg(TQString::number(m_color.red()), TQString::number(m_color.green()), TQString::number(m_color.blue())));
keys->append(i18n("HSV Colorspace: Hue/Saturation/Value", "HSV")); keys->append(i18n("HSV Colorspace: Hue/Saturation/Value", "HSV"));
values->append(i18n("<i>Hue</i>: %1, <i>Saturation</i>: %2, <i>Value</i>: %3,").tqarg(TQString::number(hue), TQString::number(saturation), TQString::number(value))); values->append(i18n("<i>Hue</i>: %1, <i>Saturation</i>: %2, <i>Value</i>: %3,").arg(TQString::number(hue), TQString::number(saturation), TQString::number(value)));
static TQString cssColors[] = { static TQString cssColors[] = {
"aqua", "00ffff", "aqua", "00ffff",
@ -1778,12 +1778,12 @@ void ColorContent::exportToHTML(HTMLExporter *exporter, int /*indent*/)
int rectHeight = (textRect.height() + 2)*3/2; int rectHeight = (textRect.height() + 2)*3/2;
int rectWidth = rectHeight * 14 / 10; // 1.4 times the height, like A4 papers. int rectWidth = rectHeight * 14 / 10; // 1.4 times the height, like A4 papers.
TQString fileName = /*Tools::fileNameForNewFile(*/TQString(TQString("color_%1.png").tqarg(color().name()).lower().mid(1))/*, exportData.iconsFolderPath)*/; TQString fileName = /*Tools::fileNameForNewFile(*/TQString(TQString("color_%1.png").arg(color().name()).lower().mid(1))/*, exportData.iconsFolderPath)*/;
TQString fullPath = exporter->iconsFolderPath + fileName; TQString fullPath = exporter->iconsFolderPath + fileName;
TQPixmap colorIcon = KColorCombo2::colorRectPixmap(color(), /*isDefault=*/false, rectWidth, rectHeight); TQPixmap colorIcon = KColorCombo2::colorRectPixmap(color(), /*isDefault=*/false, rectWidth, rectHeight);
colorIcon.save(fullPath, "PNG"); colorIcon.save(fullPath, "PNG");
TQString iconHtml = TQString("<img src=\"%1\" width=\"%2\" height=\"%3\" alt=\"\">") TQString iconHtml = TQString("<img src=\"%1\" width=\"%2\" height=\"%3\" alt=\"\">")
.tqarg(exporter->iconsFolderName + fileName, TQString::number(colorIcon.width()), TQString::number(colorIcon.height())); .arg(exporter->iconsFolderName + fileName, TQString::number(colorIcon.width()), TQString::number(colorIcon.height()));
exporter->stream << iconHtml + " " + color().name(); exporter->stream << iconHtml + " " + color().name();
} }

@ -279,7 +279,7 @@ void HtmlEditor::cursorPositionChanged()
InlineEditors::instance()->richTextItalic->setChecked( textEdit()->italic() ); InlineEditors::instance()->richTextItalic->setChecked( textEdit()->italic() );
InlineEditors::instance()->richTextUnderline->setChecked( textEdit()->underline() ); InlineEditors::instance()->richTextUnderline->setChecked( textEdit()->underline() );
switch (textEdit()->tqalignment()) { switch (textEdit()->alignment()) {
default: default:
case 1/*TQt::AlignLeft*/: InlineEditors::instance()->richTextLeft->setChecked(true); break; case 1/*TQt::AlignLeft*/: InlineEditors::instance()->richTextLeft->setChecked(true); break;
case 4/*TQt::AlignCenter*/: InlineEditors::instance()->richTextCenter->setChecked(true); break; case 4/*TQt::AlignCenter*/: InlineEditors::instance()->richTextCenter->setChecked(true); break;
@ -560,7 +560,7 @@ LinkEditDialog::LinkEditDialog(LinkContent *contentNote, TQWidget *parent/*, TQK
/* Icon button: */ /* Icon button: */
m_icon->setIcon(m_noteContent->icon()); m_icon->setIcon(m_noteContent->icon());
int minSize = m_autoIcon->sizeHint().height(); int minSize = m_autoIcon->sizeHint().height();
// Make the icon button at least the same heigh than the other buttons for a better tqalignment (nicer to the eyes): // Make the icon button at least the same heigh than the other buttons for a better alignment (nicer to the eyes):
if (m_icon->sizeHint().height() < minSize) if (m_icon->sizeHint().height() < minSize)
m_icon->setFixedSize(minSize, minSize); m_icon->setFixedSize(minSize, minSize);
else else
@ -678,7 +678,7 @@ void LinkEditDialog::slotOk()
m_icon->setIconSize(linkLook->iconSize()); // So I store it's name and reload it after size change ! m_icon->setIconSize(linkLook->iconSize()); // So I store it's name and reload it after size change !
m_icon->setIcon(icon); m_icon->setIcon(icon);
int minSize = m_autoIcon->sizeHint().height(); int minSize = m_autoIcon->sizeHint().height();
// Make the icon button at least the same heigh than the other buttons for a better tqalignment (nicer to the eyes): // Make the icon button at least the same heigh than the other buttons for a better alignment (nicer to the eyes):
if (m_icon->sizeHint().height() < minSize) if (m_icon->sizeHint().height() < minSize)
m_icon->setFixedSize(minSize, minSize); m_icon->setFixedSize(minSize, minSize);
else else
@ -712,7 +712,7 @@ LauncherEditDialog::LauncherEditDialog(LauncherContent *contentNote, TQWidget *p
/* Icon button: */ /* Icon button: */
m_icon->setIcon(service.icon()); m_icon->setIcon(service.icon());
int minSize = guessButton->sizeHint().height(); int minSize = guessButton->sizeHint().height();
// Make the icon button at least the same heigh than the other buttons for a better tqalignment (nicer to the eyes): // Make the icon button at least the same heigh than the other buttons for a better alignment (nicer to the eyes):
if (m_icon->sizeHint().height() < minSize) if (m_icon->sizeHint().height() < minSize)
m_icon->setFixedSize(minSize, minSize); m_icon->setFixedSize(minSize, minSize);
else else

@ -264,7 +264,7 @@ TQString NoteFactory::createNoteLauncherFile(const TQString &command, const TQSt
"Name=%2\n" "Name=%2\n"
"Icon=%3\n" "Icon=%3\n"
"Encoding=UTF-8\n" "Encoding=UTF-8\n"
"Type=Application\n").tqarg(command, name, icon.isEmpty() ? TQString("exec") : icon); "Type=Application\n").arg(command, name, icon.isEmpty() ? TQString("exec") : icon);
TQString fileName = fileNameForNewNote(parent, "launcher.desktop"); TQString fileName = fileNameForNewNote(parent, "launcher.desktop");
TQString fullPath = parent->fullPathForFileName(fileName); TQString fullPath = parent->fullPathForFileName(fileName);
// parent->dontCareOfCreation(fullPath); // parent->dontCareOfCreation(fullPath);
@ -445,7 +445,7 @@ Note* NoteFactory::dropNote(TQMimeSource *source, Basket *parent, bool fromDrop,
TQString message = i18n("<p>%1 doesn't support the data you've dropped.<br>" TQString message = i18n("<p>%1 doesn't support the data you've dropped.<br>"
"It however created a generic note, allowing you to drag or copy it to an application that understand it.</p>" "It however created a generic note, allowing you to drag or copy it to an application that understand it.</p>"
"<p>If you want the support of these data, please contact developer or visit the " "<p>If you want the support of these data, please contact developer or visit the "
"<a href=\"http://basket.kde.org/dropdb.php\">BasKet Drop Database</a>.</p>").tqarg(kapp->aboutData()->programName()); "<a href=\"http://basket.kde.org/dropdb.php\">BasKet Drop Database</a>.</p>").arg(kapp->aboutData()->programName());
KMessageBox::information(parent, message, i18n("Unsupported MIME Type(s)"), KMessageBox::information(parent, message, i18n("Unsupported MIME Type(s)"),
"unsupportedDropInfo", KMessageBox::AllowLink); "unsupportedDropInfo", KMessageBox::AllowLink);
return note; return note;
@ -682,7 +682,7 @@ Note* NoteFactory::copyFileAndLoad(const KURL &url, Basket *parent)
if (Global::debugWindow) if (Global::debugWindow)
*Global::debugWindow << "copyFileAndLoad: " + url.prettyURL() + " to " + fullPath; *Global::debugWindow << "copyFileAndLoad: " + url.prettyURL() + " to " + fullPath;
// TQString annotations = i18n("Original file: %1").tqarg(url.prettyURL()); // TQString annotations = i18n("Original file: %1").arg(url.prettyURL());
// parent->dontCareOfCreation(fullPath); // parent->dontCareOfCreation(fullPath);
@ -710,7 +710,7 @@ Note* NoteFactory::moveFileAndLoad(const KURL &url, Basket *parent)
if (Global::debugWindow) if (Global::debugWindow)
*Global::debugWindow << "moveFileAndLoad: " + url.prettyURL() + " to " + fullPath; *Global::debugWindow << "moveFileAndLoad: " + url.prettyURL() + " to " + fullPath;
// TQString annotations = i18n("Original file: %1").tqarg(url.prettyURL()); // TQString annotations = i18n("Original file: %1").arg(url.prettyURL());
// parent->dontCareOfCreation(fullPath); // parent->dontCareOfCreation(fullPath);

@ -97,7 +97,7 @@ Password::Password(TQWidget *parent, const char *name)
for(KGpgKeyList::iterator it = list.begin(); it != list.end(); ++it) { for(KGpgKeyList::iterator it = list.begin(); it != list.end(); ++it) {
TQString name = gpg.checkForUtf8((*it).name); TQString name = gpg.checkForUtf8((*it).name);
keyCombo->insertItem(TQString("%1 <%2> %3").tqarg(name).tqarg((*it).email).tqarg((*it).id)); keyCombo->insertItem(TQString("%1 <%2> %3").arg(name).arg((*it).email).arg((*it).id));
} }
publicPrivateRadioButton->setEnabled(keyCombo->count() > 0); publicPrivateRadioButton->setEnabled(keyCombo->count() > 0);
keyCombo->setEnabled(keyCombo->count() > 0); keyCombo->setEnabled(keyCombo->count() > 0);

@ -108,7 +108,7 @@ void TQAlphaWidget::run( int time )
widget->setWState( WState_Visible ); widget->setWState( WState_Visible );
move( widget->tqgeometry().x(),widget->tqgeometry().y() ); move( widget->geometry().x(),widget->geometry().y() );
resize( widget->size().width(), widget->size().height() ); resize( widget->size().width(), widget->size().height() );
front = TQImage( widget->size(), 32 ); front = TQImage( widget->size(), 32 );
@ -116,8 +116,8 @@ void TQAlphaWidget::run( int time )
back = TQImage( widget->size(), 32 ); back = TQImage( widget->size(), 32 );
back = TQPixmap::grabWindow( TQApplication::desktop()->winId(), back = TQPixmap::grabWindow( TQApplication::desktop()->winId(),
widget->tqgeometry().x(), widget->tqgeometry().y(), widget->geometry().x(), widget->geometry().y(),
widget->tqgeometry().width(), widget->tqgeometry().height() ); widget->geometry().width(), widget->geometry().height() );
if ( !back.isNull() && checkTime.elapsed() < duration / 2 ) { if ( !back.isNull() && checkTime.elapsed() < duration / 2 ) {
mixed = back.copy(); mixed = back.copy();
@ -142,7 +142,7 @@ bool TQAlphaWidget::eventFilter( TQObject* o, TQEvent* e )
case TQEvent::Move: case TQEvent::Move:
if ( o != widget ) if ( o != widget )
break; break;
move( widget->tqgeometry().x(),widget->tqgeometry().y() ); move( widget->geometry().x(),widget->geometry().y() );
update(); update();
break; break;
case TQEvent::Hide: case TQEvent::Hide:
@ -251,7 +251,7 @@ void TQAlphaWidget::render()
widget->clearWState( WState_ForceHide ); widget->clearWState( WState_ForceHide );
alphaBlend(); alphaBlend();
pm = mixed; pm = mixed;
tqrepaint( FALSE ); repaint( FALSE );
} }
} }
@ -348,7 +348,7 @@ bool TQRollEffect::eventFilter( TQObject* o, TQEvent* e )
case TQEvent::Move: case TQEvent::Move:
if ( o != widget ) if ( o != widget )
break; break;
move( widget->tqgeometry().x(),widget->tqgeometry().y() ); move( widget->geometry().x(),widget->geometry().y() );
update(); update();
break; break;
case TQEvent::Hide: case TQEvent::Hide:
@ -438,7 +438,7 @@ void TQRollEffect::run( int time )
widget->setWState( WState_Visible ); widget->setWState( WState_Visible );
move( widget->tqgeometry().x(),widget->tqgeometry().y() ); move( widget->geometry().x(),widget->geometry().y() );
resize( TQMIN( currentWidth, totalWidth ), TQMIN( currentHeight, totalHeight ) ); resize( TQMIN( currentWidth, totalWidth ), TQMIN( currentHeight, totalHeight ) );
show(); show();
@ -484,8 +484,8 @@ void TQRollEffect::scroll()
int w = totalWidth; int w = totalWidth;
int h = totalHeight; int h = totalHeight;
int x = widget->tqgeometry().x(); int x = widget->geometry().x();
int y = widget->tqgeometry().y(); int y = widget->geometry().y();
if ( orientation & RightScroll || orientation & LeftScroll ) if ( orientation & RightScroll || orientation & LeftScroll )
w = TQMIN( currentWidth, totalWidth ); w = TQMIN( currentWidth, totalWidth );
@ -494,15 +494,15 @@ void TQRollEffect::scroll()
setUpdatesEnabled( FALSE ); setUpdatesEnabled( FALSE );
if ( orientation & UpScroll ) if ( orientation & UpScroll )
y = widget->tqgeometry().y() + TQMAX( 0, totalHeight - currentHeight ); y = widget->geometry().y() + TQMAX( 0, totalHeight - currentHeight );
if ( orientation & LeftScroll ) if ( orientation & LeftScroll )
x = widget->tqgeometry().x() + TQMAX( 0, totalWidth - currentWidth ); x = widget->geometry().x() + TQMAX( 0, totalWidth - currentWidth );
if ( orientation & UpScroll || orientation & LeftScroll ) if ( orientation & UpScroll || orientation & LeftScroll )
move( x, y ); move( x, y );
resize( w, h ); resize( w, h );
setUpdatesEnabled( TRUE ); setUpdatesEnabled( TRUE );
tqrepaint( FALSE ); repaint( FALSE );
} }
if ( done ) { if ( done ) {
anim.stop(); anim.stop();

@ -43,8 +43,8 @@ SizeTip::SizeTip( TQWidget *parent, const char *name )
void SizeTip::setTip( const TQRect &rect ) void SizeTip::setTip( const TQRect &rect )
{ {
TQString tip = TQString( "%1x%2" ).tqarg( rect.width() ) TQString tip = TQString( "%1x%2" ).arg( rect.width() )
.tqarg( rect.height() ); .arg( rect.height() );
setText( tip ); setText( tip );
adjustSize(); adjustSize();
@ -54,7 +54,7 @@ void SizeTip::setTip( const TQRect &rect )
void SizeTip::positionTip( const TQRect &rect ) void SizeTip::positionTip( const TQRect &rect )
{ {
TQRect tipRect = tqgeometry(); TQRect tipRect = geometry();
tipRect.moveTopLeft( TQPoint( 0, 0 ) ); tipRect.moveTopLeft( TQPoint( 0, 0 ) );
if ( rect.intersects( tipRect ) ) if ( rect.intersects( tipRect ) )
@ -63,7 +63,7 @@ void SizeTip::positionTip( const TQRect &rect )
tipRect.moveCenter( TQPoint( deskR.width()/2, deskR.height()/2 ) ); tipRect.moveCenter( TQPoint( deskR.width()/2, deskR.height()/2 ) );
if ( !rect.contains( tipRect, true ) && rect.intersects( tipRect ) ) if ( !rect.contains( tipRect, true ) && rect.intersects( tipRect ) )
tipRect.moveBottomRight( tqgeometry().bottomRight() ); tipRect.moveBottomRight( geometry().bottomRight() );
} }
move( tipRect.topLeft() ); move( tipRect.topLeft() );
@ -94,7 +94,7 @@ void RegionGrabber::initGrabber()
TQDesktopWidget desktopWidget; TQDesktopWidget desktopWidget;
TQRect desktopSize; TQRect desktopSize;
if ( desktopWidget.isVirtualDesktop() ) if ( desktopWidget.isVirtualDesktop() )
desktopSize = desktopWidget.tqgeometry(); desktopSize = desktopWidget.geometry();
else else
desktopSize = desktopWidget.screenGeometry( qt_xrootwin() ); desktopSize = desktopWidget.screenGeometry( qt_xrootwin() );

@ -394,7 +394,7 @@ GeneralPage::GeneralPage(TQWidget * parent, const char * name)
"on that icon to paste the current selection.") + "</p>" + "on that icon to paste the current selection.") + "</p>" +
"<p>" + i18n("When doing so, %1 pops up a little balloon message to inform you the action has been successfully done. You can disable that balloon.") + "</p>" + "<p>" + i18n("When doing so, %1 pops up a little balloon message to inform you the action has been successfully done. You can disable that balloon.") + "</p>" +
"<p>" + i18n("Note that those messages are smart enough to not appear if the main window is visible. This is because you already see the result of your actions in the main window.") + "</p>") "<p>" + i18n("Note that those messages are smart enough to not appear if the main window is visible. This is because you already see the result of your actions in the main window.") + "</p>")
.tqarg(kapp->aboutData()->programName()), .arg(kapp->aboutData()->programName()),
this); this);
hLay->addWidget(m_usePassivePopup); hLay->addWidget(m_usePassivePopup);
hLay->addWidget(hLabel); hLay->addWidget(hLabel);
@ -798,7 +798,7 @@ NotesAppearancePage::NotesAppearancePage(TQWidget * parent, const char * name)
m_fileLook = new LinkLookEditWidget(this, i18n("Annual report"), "document", tabs); m_fileLook = new LinkLookEditWidget(this, i18n("Annual report"), "document", tabs);
m_localLinkLook = new LinkLookEditWidget(this, i18n("Home folder"), "folder_home", tabs); m_localLinkLook = new LinkLookEditWidget(this, i18n("Home folder"), "folder_home", tabs);
m_networkLinkLook = new LinkLookEditWidget(this, "www.kde.org", KMimeType::iconForURL("http://www.kde.org"), tabs); m_networkLinkLook = new LinkLookEditWidget(this, "www.kde.org", KMimeType::iconForURL("http://www.kde.org"), tabs);
m_launcherLook = new LinkLookEditWidget(this, i18n("Launch %1").tqarg(kapp->aboutData()->programName()), "basket", tabs); m_launcherLook = new LinkLookEditWidget(this, i18n("Launch %1").arg(kapp->aboutData()->programName()), "basket", tabs);
tabs->addTab(m_soundLook, i18n("&Sounds") ); tabs->addTab(m_soundLook, i18n("&Sounds") );
tabs->addTab(m_fileLook, i18n("&Files") ); tabs->addTab(m_fileLook, i18n("&Files") );
tabs->addTab(m_localLinkLook, i18n("&Local Links") ); tabs->addTab(m_localLinkLook, i18n("&Local Links") );

@ -491,7 +491,7 @@ void SoftwareImporters::importTextFile()
); );
// First create a basket for it: // First create a basket for it:
TQString title = i18n("From TextFile.txt", "From %1").tqarg(KURL(fileName).fileName()); TQString title = i18n("From TextFile.txt", "From %1").arg(KURL(fileName).fileName());
BasketFactory::newBasket(/*icon=*/"txt", title, /*backgroundImage=*/"", /*backgroundColor=*/TQColor(), /*textColor=*/TQColor(), /*templateName=*/"1column", /*createIn=*/0); BasketFactory::newBasket(/*icon=*/"txt", title, /*backgroundImage=*/"", /*backgroundColor=*/TQColor(), /*textColor=*/TQColor(), /*templateName=*/"1column", /*createIn=*/0);
Basket *basket = Global::bnpView->currentBasket(); Basket *basket = Global::bnpView->currentBasket();
basket->load(); basket->load();

@ -139,7 +139,7 @@ void KSystemTray2::displayCloseMessage(TQString fileMenu)
TQString message = i18n( TQString message = i18n(
"<p>Closing the main window will keep %1 running in the system tray. " "<p>Closing the main window will keep %1 running in the system tray. "
"Use <b>Quit</b> from the <b>Basket</b> menu to quit the application.</p>" "Use <b>Quit</b> from the <b>Basket</b> menu to quit the application.</p>"
).tqarg(KGlobal::instance()->aboutData()->programName()); ).arg(KGlobal::instance()->aboutData()->programName());
// We are sure the systray icon is visible: ouf! // We are sure the systray icon is visible: ouf!
if (useSystray) { if (useSystray) {
// Compute size and position of the pixmap to be grabbed: // Compute size and position of the pixmap to be grabbed:
@ -433,7 +433,7 @@ void SystemTray::updateToolTipDelayed()
TQString tip = "<p><nobr>" + ( basket->isLocked() ? kapp->makeStdCaption(i18n("%1 (Locked)")) TQString tip = "<p><nobr>" + ( basket->isLocked() ? kapp->makeStdCaption(i18n("%1 (Locked)"))
: kapp->makeStdCaption( "%1") ) : kapp->makeStdCaption( "%1") )
.tqarg(Tools::textToHTMLWithoutP(basket->basketName())); .arg(Tools::textToHTMLWithoutP(basket->basketName()));
TQToolTip::add(this, tip); TQToolTip::add(this, tip);
} }

@ -77,7 +77,7 @@ TQString State::fullName()
{ {
if (!parentTag() || parentTag()->states().count() == 1) if (!parentTag() || parentTag()->states().count() == 1)
return (name().isEmpty() && parentTag() ? parentTag()->name() : name()); return (name().isEmpty() && parentTag() ? parentTag()->name() : name());
return TQString(i18n("%1: %2")).tqarg(parentTag()->name(), name()); return TQString(i18n("%1: %2")).arg(parentTag()->name(), name());
} }
TQFont State::font(TQFont base) TQFont State::font(TQFont base)
@ -541,9 +541,9 @@ void Tag::createDefaultTagsSet(const TQString &fullPath)
" </state>\n" " </state>\n"
" </tag>\n" " </tag>\n"
"\n") "\n")
.tqarg( i18n("To Do"), i18n("Unchecked"), i18n("Done") ) // %1 %2 %3 .arg( i18n("To Do"), i18n("Unchecked"), i18n("Done") ) // %1 %2 %3
.tqarg( i18n("Progress"), i18n("0 %"), i18n("25 %") ) // %4 %5 %6 .arg( i18n("Progress"), i18n("0 %"), i18n("25 %") ) // %4 %5 %6
.tqarg( i18n("50 %"), i18n("75 %"), i18n("100 %") ) // %7 %8 %9 .arg( i18n("50 %"), i18n("75 %"), i18n("100 %") ) // %7 %8 %9
+ TQString( + TQString(
" <tag>\n" " <tag>\n"
" <name>%1</name>\n" // "Priority" " <name>%1</name>\n" // "Priority"
@ -596,9 +596,9 @@ void Tag::createDefaultTagsSet(const TQString &fullPath)
" </state>\n" " </state>\n"
" </tag>\n" " </tag>\n"
"\n") "\n")
.tqarg( i18n("Priority"), i18n("Low"), i18n("Medium") ) // %1 %2 %3 .arg( i18n("Priority"), i18n("Low"), i18n("Medium") ) // %1 %2 %3
.tqarg( i18n("High"), i18n("Preference"), i18n("Bad") ) // %4 %5 %6 .arg( i18n("High"), i18n("Preference"), i18n("Bad") ) // %4 %5 %6
.tqarg( i18n("Good"), i18n("Excellent"), i18n("Highlight") ) // %7 %8 %9 .arg( i18n("Good"), i18n("Excellent"), i18n("Highlight") ) // %7 %8 %9
+ TQString( + TQString(
" <tag>\n" " <tag>\n"
" <name>%1</name>\n" // "Important" " <name>%1</name>\n" // "Important"
@ -664,9 +664,9 @@ void Tag::createDefaultTagsSet(const TQString &fullPath)
" </state>\n" " </state>\n"
" </tag>""\n" " </tag>""\n"
"\n") "\n")
.tqarg( i18n("Important"), i18n("Very Important"), i18n("Information") ) // %1 %2 %3 .arg( i18n("Important"), i18n("Very Important"), i18n("Information") ) // %1 %2 %3
.tqarg( i18n("Idea"), i18n("The initial of 'Idea'", "I."), i18n("Title") ) // %4 %5 %6 .arg( i18n("Idea"), i18n("The initial of 'Idea'", "I."), i18n("Title") ) // %4 %5 %6
.tqarg( i18n("Code"), i18n("Work"), i18n("The initial of 'Work'", "W.") ) // %7 %8 %9 .arg( i18n("Code"), i18n("Work"), i18n("The initial of 'Work'", "W.") ) // %7 %8 %9
+ TQString( + TQString(
" <tag>\n" " <tag>\n"
" <state id=\"personal\">\n" " <state id=\"personal\">\n"
@ -684,7 +684,7 @@ void Tag::createDefaultTagsSet(const TQString &fullPath)
" </tag>\n" " </tag>\n"
"</basketTags>\n" "</basketTags>\n"
"") "")
.tqarg( i18n("Personal"), i18n("The initial of 'Personal'", "P."), i18n("Funny") ); // %1 %2 %3 .arg( i18n("Personal"), i18n("The initial of 'Personal'", "P."), i18n("Funny") ); // %1 %2 %3
// Write to Disk: // Write to Disk:
TQFile file(fullPath); TQFile file(fullPath);

@ -204,7 +204,7 @@ void TagListViewItem::setup()
State *state = (m_tagCopy ? m_tagCopy->stateCopies[0]->newState : m_stateCopy->newState); State *state = (m_tagCopy ? m_tagCopy->stateCopies[0]->newState : m_stateCopy->newState);
if (m_tagCopy && !m_tagCopy->newTag->shortcut().isNull()) if (m_tagCopy && !m_tagCopy->newTag->shortcut().isNull())
text = i18n("Tag name (shortcut)", "%1 (%2)").tqarg(text, m_tagCopy->newTag->shortcut().toString()); text = i18n("Tag name (shortcut)", "%1 (%2)").arg(text, m_tagCopy->newTag->shortcut().toString());
TQFont font = state->font(listView()->font()); TQFont font = state->font(listView()->font());
@ -214,7 +214,7 @@ void TagListViewItem::setup()
int height = TAG_MARGIN + TQMAX(TAG_ICON_SIZE, textRect.height()) + TAG_MARGIN; int height = TAG_MARGIN + TQMAX(TAG_ICON_SIZE, textRect.height()) + TAG_MARGIN;
setHeight(height); setHeight(height);
tqrepaint(); repaint();
} }
void TagListViewItem::paintCell(TQPainter *painter, const TQColorGroup &/*colorGroup*/, int /*column*/, int width, int /*align*/) void TagListViewItem::paintCell(TQPainter *painter, const TQColorGroup &/*colorGroup*/, int /*column*/, int width, int /*align*/)
@ -224,7 +224,7 @@ void TagListViewItem::paintCell(TQPainter *painter, const TQColorGroup &/*colorG
State *state = (m_tagCopy ? m_tagCopy->stateCopies[0]->newState : m_stateCopy->newState); State *state = (m_tagCopy ? m_tagCopy->stateCopies[0]->newState : m_stateCopy->newState);
if (m_tagCopy && !m_tagCopy->newTag->shortcut().isNull()) if (m_tagCopy && !m_tagCopy->newTag->shortcut().isNull())
text = i18n("Tag name (shortcut)", "%1 (%2)").tqarg(text, m_tagCopy->newTag->shortcut().toString()); text = i18n("Tag name (shortcut)", "%1 (%2)").arg(text, m_tagCopy->newTag->shortcut().toString());
TQFont font = (withIcon ? state->font(listView()->font()) : listView()->font()); TQFont font = (withIcon ? state->font(listView()->font()) : listView()->font());

@ -144,7 +144,7 @@ ViewSizeDialog::~ViewSizeDialog()
void ViewSizeDialog::resizeEvent(TQResizeEvent *) void ViewSizeDialog::resizeEvent(TQResizeEvent *)
{ {
setCaption( i18n("%1 by %2 pixels").tqarg(TQString::number(width())).tqarg(TQString::number(height())) ); setCaption( i18n("%1 by %2 pixels").arg(TQString::number(width())).arg(TQString::number(height())) );
m_sizeGrip->move( width() - m_sizeGrip->width(), height() - m_sizeGrip->height() ); m_sizeGrip->move( width() - m_sizeGrip->width(), height() - m_sizeGrip->height() );
} }

Loading…
Cancel
Save