diff options
Diffstat (limited to 'kdeprint/kmthreadjob.cpp')
-rw-r--r-- | kdeprint/kmthreadjob.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kdeprint/kmthreadjob.cpp b/kdeprint/kmthreadjob.cpp index 43dcda831..02c148d95 100644 --- a/kdeprint/kmthreadjob.cpp +++ b/kdeprint/kmthreadjob.cpp @@ -50,10 +50,10 @@ TQString KMThreadJob::jobFile() bool KMThreadJob::saveJobs() { - QFile f(jobFile()); + TQFile f(jobFile()); if (f.open(IO_WriteOnly)) { - QTextStream t(&f); + TQTextStream t(&f); TQIntDictIterator<KMJob> it(m_jobs); for (;it.current();++it) t << it.current()->id() << CHARSEP << it.current()->name() << CHARSEP << it.current()->printer() << CHARSEP << it.current()->owner() << CHARSEP << it.current()->size() << endl; @@ -64,11 +64,11 @@ bool KMThreadJob::saveJobs() bool KMThreadJob::loadJobs() { - QFile f(jobFile()); + TQFile f(jobFile()); if (f.exists() && f.open(IO_ReadOnly)) { - QTextStream t(&f); - QString line; + TQTextStream t(&f); + TQString line; m_jobs.clear(); while (!t.eof()) |