mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
kcontrol: fix compiler warning about virtual overload
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
c00d30c733
commit
ee3893c3e9
2 changed files with 3 additions and 3 deletions
|
@ -432,7 +432,7 @@ CFontFileListView::CFontFileListView(QWidget *parent)
|
|||
itsMarkAct=itsMenu->addAction(KIcon("edit-delete"), i18n("Mark for Deletion"),
|
||||
this, SLOT(mark()));
|
||||
|
||||
connect(this, SIGNAL(itemSelectionChanged()), SLOT(selectionChanged()));
|
||||
connect(this, SIGNAL(itemSelectionChanged()), SLOT(selectedChanged()));
|
||||
connect(this, SIGNAL(itemClicked(QTreeWidgetItem*,int)), SLOT(clicked(QTreeWidgetItem*,int)));
|
||||
}
|
||||
|
||||
|
@ -588,7 +588,7 @@ void CFontFileListView::unmark()
|
|||
checkFiles();
|
||||
}
|
||||
|
||||
void CFontFileListView::selectionChanged()
|
||||
void CFontFileListView::selectedChanged()
|
||||
{
|
||||
QList<QTreeWidgetItem *> items(selectedItems());
|
||||
QTreeWidgetItem *item;
|
||||
|
|
|
@ -136,7 +136,7 @@ class CFontFileListView : public QTreeWidget
|
|||
void properties();
|
||||
void mark();
|
||||
void unmark();
|
||||
void selectionChanged();
|
||||
void selectedChanged();
|
||||
void clicked(QTreeWidgetItem *item, int col);
|
||||
void contextMenuEvent(QContextMenuEvent *ev);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue