From 7c2461626d58d384c42152444fb775b984ae82bf Mon Sep 17 00:00:00 2001 From: Albert S Date: Mon, 28 Sep 2020 19:00:47 +0200 Subject: [PATCH] rename Window::buttonClick to Window::executeConfig --- window.cpp | 8 ++++---- window.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/window.cpp b/window.cpp index bd95381..55e8fd5 100644 --- a/window.cpp +++ b/window.cpp @@ -118,7 +118,7 @@ void Window::populateGrid(const QVector &list) } } -void Window::buttonClick(const EntryConfig &config) +void Window::executeConfig(const EntryConfig &config) { QProcess::startDetached(config.command, config.arguments); this->closeWindow(); @@ -369,7 +369,7 @@ void Window::keyPressEvent(QKeyEvent *event) [&key](const EntryPushButton *y) { return y->getShortcutKey() == key; }); if(it != buttonsInGrid.end()) { - buttonClick((*it)->getEntryConfig()); + executeConfig((*it)->getEntryConfig()); } } QWidget::keyPressEvent(event); @@ -426,7 +426,7 @@ void Window::filterGridFor(QString filter) EntryPushButton *Window::createEntryButton(const EntryConfig &entry) { EntryPushButton *button = new EntryPushButton(entry); - connect(button, &EntryPushButton::clicked, this, &Window::buttonClick); + connect(button, &EntryPushButton::clicked, this, &Window::executeConfig); connect(button, &EntryPushButton::addToFavourites, this, &Window::addToFavourites); connect(button, &EntryPushButton::deleteRequested, this, &Window::deleteEntry); return button; @@ -443,7 +443,7 @@ void Window::lineEditReturnPressed() if(buttonsInGrid.length() > 0 && this->lineEdit->text().length() > 0) { - buttonClick(buttonsInGrid[0]->getEntryConfig()); + executeConfig(buttonsInGrid[0]->getEntryConfig()); return; } } diff --git a/window.h b/window.h index efeb232..496dbf0 100644 --- a/window.h +++ b/window.h @@ -63,7 +63,7 @@ class Window : public QWidget void keyReleaseEvent(QKeyEvent *event); QVector generateEntryButtons(const QVector &userEntryButtons); void keyPressEvent(QKeyEvent *event); - void buttonClick(const EntryConfig &button); + void executeConfig(const EntryConfig &button); void addToFavourites(const EntryConfig &button); void deleteEntry(EntryConfig &config); QLineEdit *lineEdit;