[Kde-imaging] [Bug 116605] ImagesGallery plugins crahing when exporting to an existing dir an choosing no to overwrite [Patch]
Tom Albers
tomalbers at kde.nl
Wed Dec 28 18:20:45 CET 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=116605
tomalbers kde nl changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tomalbers kde nl 2005-12-28 18:20 -------
SVN commit 492067 by toma:
Matiyam is right, return false if user says 'no' to the dialog else it will crash...
BUG: 116605
M +3 -1 imagesgallery.cpp
--- trunk/extragear/libs/kipi-plugins/imagesgallery/imagesgallery.cpp #492066:492067
@ -278,7 +278,9 @
KMessageBox::error(kapp->activeWindow(), i18n("Cannot remove folder '%1'.").arg(MainTPath));
return false;
}
- }
+ }
+ else
+ return false;
}
return true;
More information about the Kde-imaging
mailing list