More coding style fixes

GIT_SILENT
This commit is contained in:
Elvis Angelaccio 2019-04-20 16:28:38 +02:00
parent bdbcef3cff
commit c2da7e9efe
2 changed files with 4 additions and 2 deletions

View file

@ -168,7 +168,8 @@ void InformationPanel::contextMenuEvent(QContextMenuEvent* event)
Panel::contextMenuEvent(event);
}
void InformationPanel::showContextMenu(const QPoint &pos) {
void InformationPanel::showContextMenu(const QPoint &pos)
{
QMenu popup(this);
QAction* previewAction = popup.addAction(i18nc("@action:inmenu", "Preview"));

View file

@ -295,7 +295,8 @@ void InformationPanelContent::markOutdatedPreview()
m_preview->setPixmap(disabledPixmap);
}
KFileItemList InformationPanelContent::items() {
KFileItemList InformationPanelContent::items()
{
return m_metaDataWidget->items();
}