| Summary: | Thunderbird will not open when sending emails in Digikam | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Jostein Berntsen <jbernts> |
| Component: | Plugin-Generic-SendByMail | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | ainsaur |
| Priority: | NOR | ||
| Version First Reported In: | 5.6.0 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 0.1.0 | |
| Sentry Crash Report: | |||
|
Description
Jostein Berntsen
2005-06-27 17:22:50 UTC
SVN commit 456755 by toma: Thunderbird does not return the dot in this error message, so thunderbird was not started and the composer can not be started in that case. Also replaced the 'contains' with a 'find' which is faster, I learned that from Ingo, which is pretty funny in this case ;-) BUGS: 108227 CCMAIL: oliver@doerr-privat.de M +1 -1 sendimages.cpp --- trunk/extragear/libs/kipi-plugins/sendimages/sendimages.cpp #456754:456755 @@ -637,7 +637,7 @@ void SendImages::slotMozillaExited(KProcess*) { - if ( m_mozillaStdErr.contains("No running window found.") == true ) // No remote Mozilla | Netscape | + if ( m_mozillaStdErr.find("No running window found") != -1 ) // No remote Mozilla | Netscape | { // Thunderbird env. loaded ! m_mailAgentProc2 = new KProcess; // Init a new env. *** Bug 126493 has been marked as a duplicate of this bug. *** |