summaryrefslogtreecommitdiffstats
path: root/kbruch/src/task.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbruch/src/task.cpp')
-rw-r--r--kbruch/src/task.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kbruch/src/task.cpp b/kbruch/src/task.cpp
index 4c3748a3..50cd2f28 100644
--- a/kbruch/src/task.cpp
+++ b/kbruch/src/task.cpp
@@ -176,7 +176,7 @@ void task::add_operation(short operation)
}
/** just outputs the whole given task to stdout; for debugging */
-QTextStream & task::display(QTextStream & str)
+TQTextStream & task::display(TQTextStream & str)
{
/* this is our pointer on the ratio_vector, set it to the beginning */
RatioArray::iterator ratio_pointer = ratio_vector.begin();
@@ -706,7 +706,7 @@ void task::make_denominators(int main_denominator, short pmax_md,
/* ------ some prototyps of non class functions ------ */
/** it is possible to code: cout << task_object << endl; */
-QTextStream & operator<<(QTextStream & str, task & ptask)
+TQTextStream & operator<<(TQTextStream & str, task & ptask)
{
return ptask.display(str);
}