mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Fix faulty signal/slot connection
This commit is contained in:
parent
28daa45a44
commit
042899e25f
2 changed files with 3 additions and 3 deletions
|
@ -29,7 +29,7 @@ PlacesItemStorageAccessListener::PlacesItemStorageAccessListener(PlacesItem* ite
|
|||
{
|
||||
if (item) {
|
||||
connect(item->m_access, SIGNAL(accessibilityChanged(bool,QString)),
|
||||
this, SLOT(onAccessibilityChanged()));
|
||||
this, SLOT(slotAccessibilityChanged()));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -37,7 +37,7 @@ PlacesItemStorageAccessListener::~PlacesItemStorageAccessListener()
|
|||
{
|
||||
}
|
||||
|
||||
void PlacesItemStorageAccessListener::slotOnAccessibilityChanged()
|
||||
void PlacesItemStorageAccessListener::slotAccessibilityChanged()
|
||||
{
|
||||
m_item->onAccessibilityChanged();
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ public:
|
|||
virtual ~PlacesItemStorageAccessListener();
|
||||
|
||||
private slots:
|
||||
void slotOnAccessibilityChanged();
|
||||
void slotAccessibilityChanged();
|
||||
|
||||
private:
|
||||
PlacesItem* m_item;
|
||||
|
|
Loading…
Reference in a new issue