| 569 | |
| 570 | |
| 571 | ProjectFolderItem::ProjectFolderItem(IProject* project, const Path& path, ProjectBaseItem* parent) |
| 572 | : ProjectBaseItem( project, path.lastPathSegment(), parent ) |
| 573 | { |
| 574 | setPath( path ); |
| 575 | |
| 576 | setFlags(flags() | Qt::ItemIsDropEnabled); |
| 577 | if (project && project->path() != path) |
| 578 | setFlags(flags() | Qt::ItemIsDragEnabled); |
| 579 | } |
| 580 | |
| 581 | ProjectFolderItem::ProjectFolderItem( const QString & name, ProjectBaseItem * parent ) |
| 582 | : ProjectBaseItem( parent->project(), name, parent ) |
nothing calls this directly
no test coverage detected