diff options
Diffstat (limited to 'kpacman/status.cpp')
-rw-r--r-- | kpacman/status.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kpacman/status.cpp b/kpacman/status.cpp index 6143b00..1a43f5c 100644 --- a/kpacman/status.cpp +++ b/kpacman/status.cpp @@ -2,7 +2,7 @@ #include <tdelocale.h> #include <kstddirs.h> -#include <status.h> +#include "status.h" #include <ntqpixmap.h> #include <ntqbitmap.h> @@ -26,11 +26,11 @@ Status::Status( TQWidget *parent, const char *name, int Scheme, int Mode ) : confScheme(); } -TQList<TQPixmap> *Status::loadPixmap(TQWidget *parent, TQString pixmapName, - TQList<TQPixmap> *pixmaps) +TQPtrList<TQPixmap> *Status::loadPixmap(TQWidget *parent, TQString pixmapName, + TQPtrList<TQPixmap> *pixmaps) { if (pixmaps == NULL) { - pixmaps = new TQList<TQPixmap>; + pixmaps = new TQPtrList<TQPixmap>; pixmaps->setAutoDelete(TRUE); } |