summaryrefslogtreecommitdiffstats
path: root/kstars
diff options
context:
space:
mode:
Diffstat (limited to 'kstars')
-rw-r--r--kstars/kstars/filesource.h2
-rw-r--r--kstars/kstars/planetcatalog.cpp2
-rw-r--r--kstars/kstars/stardatasink.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/kstars/kstars/filesource.h b/kstars/kstars/filesource.h
index 7de46055..8189e5f0 100644
--- a/kstars/kstars/filesource.h
+++ b/kstars/kstars/filesource.h
@@ -90,7 +90,7 @@ class FileSource : public TQDataSource {
*A low value needs longer to reload data, but it doesn't interrupt the
*main event loop (it's smoother).
*But it's important to know that 500 lines to read is very fast, but
- *appending to TQList in StarDataSink will take the most time and this
+ *appending to TQPtrList in StarDataSink will take the most time and this
*will also defined with this value.
*/
#define maxLines 500
diff --git a/kstars/kstars/planetcatalog.cpp b/kstars/kstars/planetcatalog.cpp
index 3367f35c..34579fea 100644
--- a/kstars/kstars/planetcatalog.cpp
+++ b/kstars/kstars/planetcatalog.cpp
@@ -35,7 +35,7 @@ PlanetCatalog::PlanetCatalog(KStarsData *dat) : Earth(0), Sun(0), kd(dat) {
PlanetCatalog::~PlanetCatalog() {
//
- // do NOT delete Sun. It is also in the TQList
+ // do NOT delete Sun. It is also in the TQPtrList
// and will be deleted automatically.
//
delete Earth;
diff --git a/kstars/kstars/stardatasink.h b/kstars/kstars/stardatasink.h
index abfa23ee..61ec9ce5 100644
--- a/kstars/kstars/stardatasink.h
+++ b/kstars/kstars/stardatasink.h
@@ -21,7 +21,7 @@
/**@class StarDataSink
*StarDataSink receives data from an FileSource object and appends these data
- *to a TQList of star data. It's an asynchronous io class.
+ *to a TQPtrList of star data. It's an asynchronous io class.
*@author Thomas Kabelmann
*@version 1.0
*/