| 676 | } |
| 677 | |
| 678 | ProjectFileItem::ProjectFileItem( IProject* project, const Path& path, ProjectBaseItem* parent ) |
| 679 | : ProjectBaseItem( project, path.lastPathSegment(), parent ) |
| 680 | { |
| 681 | setFlags(flags() | Qt::ItemIsDragEnabled); |
| 682 | setPath( path ); |
| 683 | } |
| 684 | |
| 685 | ProjectFileItem::ProjectFileItem( const QString& name, ProjectBaseItem* parent ) |
| 686 | : ProjectBaseItem( parent->project(), name, parent ) |
nothing calls this directly
no test coverage detected