[Kde-imaging] [Bug 108227] Thunderbird will not open when sending emails in Digikam
Tom Albers
tomalbers at kde.nl
Sat Sep 3 17:22:51 CEST 2005
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=108227
tomalbers kde nl changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tomalbers kde nl 2005-09-03 17:22 -------
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.
More information about the Kde-imaging
mailing list