From 8b06b0feec8a4cbf2348cab2f2d1250b322954a0 Mon Sep 17 00:00:00 2001 From: Albert Astals Cid Date: Thu, 26 Oct 2017 15:47:21 +0200 Subject: [PATCH] Make it clear continue will make you lose changes --- part.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/part.cpp b/part.cpp index 12fffe760..99c594403 100644 --- a/part.cpp +++ b/part.cpp @@ -2475,7 +2475,7 @@ bool Part::saveAs( const QUrl & saveUrl, SaveAsFlags flags ) i18n( "The following elements cannot be saved in this format and will be lost.
If you want to preserve them, please use the Okular document archive format." ), listOfwontSaves, i18n( "Warning" ), KGuiItem( i18n( "Save as Okular document archive..." ), "document-save-as" ), // <- KMessageBox::Yes - KStandardGuiItem::cont() ); // <- KMessageBox::NO + KGuiItem( i18n( "Continue losing changes..." ), "arrow-right" ) ); // <- KMessageBox::NO switch (result) {