diff options
Diffstat (limited to 'src/dolphinpart.h')
| -rw-r--r-- | src/dolphinpart.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/dolphinpart.h b/src/dolphinpart.h index af0acb171..aec427753 100644 --- a/src/dolphinpart.h +++ b/src/dolphinpart.h @@ -88,6 +88,14 @@ public: return m_nameFilter; } + /** + * Don't use this. Always @returns an empty list. It only exists to silence moc. + */ + QList<QUrl> filesToSelect() const + { + return QList<QUrl>(); + } + protected: /** * We reimplement openUrl so no need to implement openFile. @@ -214,10 +222,6 @@ private Q_SLOTS: * Called by konqueror --select */ void setFilesToSelect(const QList<QUrl> &files); - QList<QUrl> filesToSelect() const - { - return QList<QUrl>(); - } // silence moc bool eventFilter(QObject *, QEvent *) override; |
