Rename FancyLineEdit::setHistoryKey -> setHistoryCompleter

similar for HistoryCompleter *m_completer -> m_historyCompleter

Change-Id: Ic7aedc19cbb865f0a5bdddb9565a7411fd06dfde
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-08-24 13:05:09 +02:00
parent 96d8009693
commit 8d3c1cfb05
5 changed files with 27 additions and 29 deletions

View File

@@ -343,7 +343,7 @@ LogWindow::LogWindow(QWidget *parent)
m_commandLabel = new QLabel(tr("Command:"), this);
m_commandEdit = new Utils::FancyLineEdit(this);
m_commandEdit->setFrame(false);
m_commandEdit->setHistoryKey(QLatin1String("DebuggerInput"));
m_commandEdit->setHistoryCompleter(QLatin1String("DebuggerInput"));
QHBoxLayout *commandBox = new QHBoxLayout;
commandBox->addWidget(m_commandLabel);
commandBox->addWidget(m_commandEdit);