mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 08:58:22 -04:00
[libcalamaresui] Unrelated typedef for JobList
This commit is contained in:
parent
eed207ae2e
commit
2d31e987c0
20 changed files with 31 additions and 29 deletions
|
@ -46,7 +46,7 @@ public:
|
|||
#endif
|
||||
}
|
||||
|
||||
void setJobs( const QList< job_ptr >& jobs )
|
||||
void setJobs( const JobList& jobs )
|
||||
{
|
||||
m_jobs = jobs;
|
||||
}
|
||||
|
@ -73,7 +73,7 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
QList< job_ptr > m_jobs;
|
||||
JobList m_jobs;
|
||||
JobQueue* m_queue;
|
||||
int m_jobIndex;
|
||||
|
||||
|
@ -164,7 +164,7 @@ JobQueue::enqueue( const job_ptr& job )
|
|||
|
||||
|
||||
void
|
||||
JobQueue::enqueue( const QList< job_ptr >& jobs )
|
||||
JobQueue::enqueue( const JobList& jobs )
|
||||
{
|
||||
Q_ASSERT( !m_thread->isRunning() );
|
||||
m_jobs.append( jobs );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue