[Qt] Fix No such slot UnitDisplayStatusBarControl::onDisplayUnitsClicked
This commit is contained in:
parent
29ef389514
commit
e3496da730
1 changed files with 1 additions and 5 deletions
|
@ -1012,7 +1012,7 @@ UnitDisplayStatusBarControl::UnitDisplayStatusBarControl():QLabel()
|
|||
setToolTip(tr("Unit to show amounts in. Click to select another unit."));
|
||||
}
|
||||
|
||||
/** So that it responds to left-button clicks */
|
||||
/** So that it responds to button clicks */
|
||||
void UnitDisplayStatusBarControl::mousePressEvent(QMouseEvent *event)
|
||||
{
|
||||
onDisplayUnitsClicked(event->pos());
|
||||
|
@ -1029,10 +1029,6 @@ void UnitDisplayStatusBarControl::createContextMenu()
|
|||
menu->addAction(menuAction);
|
||||
}
|
||||
connect(menu,SIGNAL(triggered(QAction*)),this,SLOT(onMenuSelection(QAction*)));
|
||||
|
||||
// what happens on right click.
|
||||
setContextMenuPolicy(Qt::CustomContextMenu);
|
||||
connect(this,SIGNAL(customContextMenuRequested(const QPoint&)),this,SLOT(onDisplayUnitsClicked(const QPoint&)));
|
||||
}
|
||||
|
||||
/** Lets the control know about the Options Model (and its signals) */
|
||||
|
|
Loading…
Reference in a new issue