"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>"
"</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>")
.arg(kapp->aboutData()->programName())
.arg(kapp->aboutData()->programName())
.arg(kapp->aboutData()->programName()),
.arg(tdeApp->aboutData()->programName())
.arg(tdeApp->aboutData()->programName())
.arg(tdeApp->aboutData()->programName()),
folderWidget);
folderLayout->addWidget(moveFolder);
folderLayout->addWidget(useFolder);
@ -216,7 +216,7 @@ void BackupDialog::backup()
thread.start();
while(thread.running()){
progress->advance(1);// Or else, the animation is not played!
kapp->processEvents();
tdeApp->processEvents();
usleep(300);// Not too long because if the backup process is finished, we wait for nothing
}
@ -274,14 +274,14 @@ void BackupDialog::restore()
thread.start();
while(thread.running()){
progress->advance(1);// Or else, the animation is not played!
kapp->processEvents();
tdeApp->processEvents();
usleep(300);// Not too long because if the restore process is finished, we wait for nothing
}
dialog->hide();// The restore is finished, do not continue to show it while telling the user the application is going to be restarted
deletedialog;// If we only hidden it, it reappeared just after having restored a small backup... Very strange.
dialog=0;// This was annoying since it is modal and the "BasKet Note Pads is going to be restarted" message was not reachable.
// kapp->processEvents(); // Show the editor toolbar before ensuring the note is visible
// tdeApp->processEvents(); // Show the editor toolbar before ensuring the note is visible
ensureNoteVisible(note);// because toolbar can create a new line and then partially hide the note
m_editor->widget()->setFocus();// When clicking in the basket, a TQTimer::singleShot(0, ...) focus the basket! So we focus the the widget after kapp->processEvents()
m_editor->widget()->setFocus();// When clicking in the basket, a TQTimer::singleShot(0, ...) focus the basket! So we focus the the widget after tdeApp->processEvents()
emitresetStatusBarText();// Display "Editing. ... to validate."
}else{
// Delete the note user have canceled the addition:
"<p><b>"+i18n("Please provide your email address.")+"</b></p>"+
"<p>"+i18n("It will only be used to contact you back if more information is needed about your comments, ask you how to reproduce the bugs you report, send bug corrections for you to test, etc.")+"</p>"+
"<p>"+i18n("The email address is optional. If you do not provide any, your comments will be sent anonymously.")+"</p>",
*// Instanciate the LikeBack system, and show the first-use information dialog if the button-bar is shown:
*LikeBack*likeBack=newLikeBack(LikeBack::AllButtons,LikeBack::isDevelopmentVersion(kapp->aboutData->version()));// Show button-bar only in beta-versions
*LikeBack*likeBack=newLikeBack(LikeBack::AllButtons,LikeBack::isDevelopmentVersion(tdeApp->aboutData->version()));// Show button-bar only in beta-versions
textEdit->moveCursor(KTextEdit::MoveEnd,false);// FIXME: Sometimes, the cursor flicker at ends before being positionned where clicked (because kapp->processEvents() I think)
textEdit->moveCursor(KTextEdit::MoveEnd,false);// FIXME: Sometimes, the cursor flicker at ends before being positionned where clicked (because tdeApp->processEvents() I think)
TQStringmessage=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>").arg(kapp->aboutData()->programName());
"It however created a generic note, allowing you to drag or copy it to an application that understand it.</p>").arg(tdeApp->aboutData()->programName());
"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("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>")