Debugger: Remove unused showPromptDialog function

Change-Id: Ie8f2cc905cb5e39c5419837e298c37ed4e1ec377
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2016-03-09 17:58:26 +01:00
parent 9fba0a6e03
commit de127b1f5c

View File

@@ -954,10 +954,6 @@ public:
bool parseArguments(const QStringList &args, QString *errorMessage);
void parseCommandLineArguments();
// Ex-Analyzer
bool showPromptDialog(const QString &title, const QString &text,
const QString &stopButtonText, const QString &cancelButtonText) const;
// Called when all dependent plugins have loaded.
void initialize();
@@ -3360,23 +3356,6 @@ void DebuggerPluginPrivate::updateActiveLanguages()
// return QObject::eventFilter(obj, event);
//}
bool DebuggerPluginPrivate::showPromptDialog(const QString &title, const QString &text,
const QString &stopButtonText, const QString &cancelButtonText) const
{
CheckableMessageBox messageBox(ICore::mainWindow());
messageBox.setWindowTitle(title);
messageBox.setText(text);
messageBox.setStandardButtons(QDialogButtonBox::Yes|QDialogButtonBox::Cancel);
if (!stopButtonText.isEmpty())
messageBox.button(QDialogButtonBox::Yes)->setText(stopButtonText);
if (!cancelButtonText.isEmpty())
messageBox.button(QDialogButtonBox::Cancel)->setText(cancelButtonText);
messageBox.setDefaultButton(QDialogButtonBox::Yes);
messageBox.setCheckBoxVisible(false);
messageBox.exec();
return messageBox.clickedStandardButton() == QDialogButtonBox::Yes;
}
void DebuggerPluginPrivate::onModeChanged(IMode *mode)
{
// FIXME: This one gets always called, even if switching between modes