aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp')
-rw-r--r--src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp
index 1ec746a3..6f583e4e 100644
--- a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp
+++ b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp
@@ -12,6 +12,7 @@
#include <QFileDialog>
#include <QDebug>
#include <QApplication>
+#include <QMessageBox>
#include <LuminaUtils.h>
@@ -281,13 +282,13 @@ void PlainTextEditor::textChanged(){
void PlainTextEditor::fileChanged(){
qDebug() << "File Changed:" << currentFile();
bool update = !hasChanges; //Go ahead and reload the file automatically - no custom changes in the editor
- /*QString text = tr("The following file has been changed by some other utility. Do you want to re-load it?");
+ QString text = tr("The following file has been changed by some other utility. Do you want to re-load it?");
text.append("\n");
text.append( tr("(Note: You will lose all currently-unsaved changes)") );
- text.append("\n\n%1");*/
+ text.append("\n\n%1");
if(!update){
- //update = (QMessageBox::Yes == QMessageBox::question(this->parent(), tr("File Modified"),text.arg(currentFile()) , QMessageBox::Yes | QMessageBox::No, QMessageBox::No) );
+ update = (QMessageBox::Yes == QMessageBox::question(this, tr("File Modified"),text.arg(currentFile()) , QMessageBox::Yes | QMessageBox::No, QMessageBox::No) );
}
//Now update the text in the editor as needed
if(update){
bgstack15