Remove class SessionNodeImpl, just use SessionNode directly

The class added nothing over SessionNode.

Change-Id: I137c274514b2c5897a591b7e093ba84e1a91e9d7
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
Daniel Teske
2012-01-31 13:40:59 +01:00
parent 53ffa9c676
commit 9ac92e6fad
7 changed files with 10 additions and 134 deletions

View File

@@ -595,8 +595,8 @@ bool ProjectNode::sortNodesByPath(Node *n1, Node *n2) {
\class ProjectExplorer::SessionNode
*/
SessionNode::SessionNode(const QString &sessionPath, QObject *parentObject)
: FolderNode(sessionPath)
SessionNode::SessionNode(QObject *parentObject)
: FolderNode(QLatin1String("session"))
{
setParent(parentObject);
setNodeType(SessionNodeType);