| 410 | }; |
| 411 | |
| 412 | Project::Project( QObject *parent ) |
| 413 | : IProject( parent ) |
| 414 | , d_ptr(new ProjectPrivate(this)) |
| 415 | { |
| 416 | Q_D(Project); |
| 417 | |
| 418 | d->progress = new ProjectProgress; |
| 419 | Core::self()->uiController()->registerStatus( d->progress ); |
| 420 | } |
| 421 | |
| 422 | Project::~Project() |
| 423 | { |
nothing calls this directly
no test coverage detected