From ea889d21f3b5bf846ff20a6fad9a756108a28ad7 Mon Sep 17 00:00:00 2001 From: pohly Date: Sun, 08 May 2005 16:13:24 +0000 Subject: code change by tim: ask the user to confirm the remapping of the ESC key --- (limited to 'noncore/apps/opie-reader') diff --git a/noncore/apps/opie-reader/QTReaderApp.cpp b/noncore/apps/opie-reader/QTReaderApp.cpp index 6753698..8ef0674 100644 --- a/noncore/apps/opie-reader/QTReaderApp.cpp +++ b/noncore/apps/opie-reader/QTReaderApp.cpp @@ -3158,7 +3158,12 @@ void QTReaderApp::closeEvent( QCloseEvent *e ) } else if (editorStack->visibleWidget() == m_buttonprefs) { - m_buttonprefs->mapkey(Qt::NoButton, Key_Escape); + int ret = QMessageBox::warning(this, PROGNAME, +tr("Do you wish to map this key?\n\nIf you proceed you will map\nthe escape key and you will\nneed to press the close box\ntwice to exit this program\n\nContinue?"), tr("Yes"), tr("No"), QString::null, 0, 1); + if (ret == 0) + { + m_buttonprefs->mapkey(Qt::NoButton, Key_Escape); + } e->ignore(); } else if (m_dontSave) -- cgit v0.9.0.2