mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-07-31 11:20:22 +02:00
Move implementation out of the header
This commit is contained in:
@@ -51,3 +51,9 @@ ViewPage::dropMimeData( const QMimeData* data, Qt::DropAction action )
|
|||||||
Q_UNUSED( action );
|
Q_UNUSED( action );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool
|
||||||
|
ViewPage::addPageItem() const {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
@@ -76,7 +76,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Should we add a row in the SourceTreeView for this page.
|
* Should we add a row in the SourceTreeView for this page.
|
||||||
*/
|
*/
|
||||||
virtual bool addPageItem() const { return true; }
|
virtual bool addPageItem() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This page is actually a constant page that will be shown on every
|
* This page is actually a constant page that will be shown on every
|
||||||
@@ -106,6 +106,6 @@ private:
|
|||||||
QString m_filter;
|
QString m_filter;
|
||||||
};
|
};
|
||||||
|
|
||||||
}; // ns
|
} // ns
|
||||||
|
|
||||||
#endif //VIEWPAGE_H
|
#endif //VIEWPAGE_H
|
||||||
|
Reference in New Issue
Block a user