| Summary: | strange error message when cancel save dialog in board editor | ||
|---|---|---|---|
| Product: | [Applications] kmahjongg | Reporter: | Frederik Schwarzer <schwarzer> |
| Component: | general | Assignee: | Albert Astals Cid <aacid> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Frederik Schwarzer
2006-06-17 06:52:02 UTC
SVN commit 552305 by aacid:
Don't tell the user only saving to local medium is supported if he clicks cancel
BUGS: 129284
M +1 -0 Editor.cpp
--- branches/KDE/3.5/kdegames/kmahjongg/Editor.cpp #552304:552305
@@ -313,6 +313,7 @@
"*|All Files"),
this,
i18n("Save Board Layout" ));
+ if( url.isEmpty() ) return false;
if( !url.isLocalFile() )
{
KMessageBox::sorry( this, i18n( "Only saving to local files currently supported." ) );
|