1
0
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:
Uwe L. Korn
2014-07-14 18:47:45 +01:00
parent 87991f97e0
commit 8612ab71b3
2 changed files with 8 additions and 2 deletions

View File

@@ -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;
}

View File

@@ -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