summaryrefslogtreecommitdiffstats
path: root/src/library
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-05-05 08:19:27 +0200
committerUwe Klotz <uklotz@mixxx.org>2020-05-05 08:31:30 +0200
commit8a75a61f0ef8bced0d705fee27fbee2f04c7106a (patch)
tree3a1a9dc5bccb5efeee13bc3fb49dad4d9c0fd5e3 /src/library
parent95863f8cb67e0f38e665177f0dd1cb06a0e6c05e (diff)
Rename slots according to naming conventions
Diffstat (limited to 'src/library')
-rw-r--r--src/library/library.cpp4
-rw-r--r--src/library/librarycontrol.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/library/library.cpp b/src/library/library.cpp
index a685199bb9..136c92c4cb 100644
--- a/src/library/library.cpp
+++ b/src/library/library.cpp
@@ -236,11 +236,11 @@ void Library::bindSearchboxWidget(WSearchLineEdit* pSearchboxWidget) {
connect(this,
&Library::disableSearch,
pSearchboxWidget,
- &WSearchLineEdit::disableSearch);
+ &WSearchLineEdit::slotDisableSearch);
connect(this,
&Library::restoreSearch,
pSearchboxWidget,
- &WSearchLineEdit::restoreSearch);
+ &WSearchLineEdit::slotRestoreSearch);
connect(this,
&Library::setTrackTableFont,
pSearchboxWidget,
diff --git a/src/library/librarycontrol.cpp b/src/library/librarycontrol.cpp
index 9eabf573cd..d1e9d6579f 100644
--- a/src/library/librarycontrol.cpp
+++ b/src/library/librarycontrol.cpp
@@ -335,7 +335,7 @@ void LibraryControl::bindSearchboxWidget(WSearchLineEdit* pSearchbox) {
connect(this,
&LibraryControl::clearSearchIfClearButtonHasFocus,
m_pSearchbox,
- &WSearchLineEdit::clearSearchIfClearButtonHasFocus);
+ &WSearchLineEdit::slotClearSearchIfClearButtonHasFocus);
connect(m_pSearchbox,
&WSearchLineEdit::destroyed,
this,