From e4f5cee0b8d94bc35ea4a670e73e40ee966956fe Mon Sep 17 00:00:00 2001 From: Don Sanders Date: Wed, 16 Aug 2000 20:29:56 +0000 Subject: [PATCH] The first patch in an exciting series of Tru64 fixes by Thomas Leitner. svn path=/trunk/kdenetwork/kmail/; revision=61296 --- kbusyptr.cpp | 6 ------ kbusyptr.h | 1 - 2 files changed, 7 deletions(-) diff --git a/kbusyptr.cpp b/kbusyptr.cpp index fe478edcd..4f592d607 100644 --- a/kbusyptr.cpp +++ b/kbusyptr.cpp @@ -19,7 +19,6 @@ KBusyPtr :: KBusyPtr () numCursors = 0; frameDelay = 500; cursorList = NULL; - bitmapList = NULL; //animated = TRUE; animated = FALSE; @@ -33,9 +32,7 @@ KBusyPtr :: KBusyPtr () KBusyPtr :: ~KBusyPtr() { if (cursorList) delete[] cursorList; - if (bitmapList) delete[] bitmapList; cursorList = NULL; - bitmapList = NULL; } @@ -140,9 +137,6 @@ void KBusyPtr :: loadCursor (const char* cursorName,const char* maskName) numY = map.height() >> 4; numCursors = numX * numY; - if (bitmapList) delete[] bitmapList; - QSize size(16,16); - bitmapList = new QBitmap[numCursors](size); if (cursorList) delete[] cursorList; cursorList = new QCursor[numCursors]; diff --git a/kbusyptr.h b/kbusyptr.h index bf4deeaa4..b4dc2db29 100644 --- a/kbusyptr.h +++ b/kbusyptr.h @@ -51,7 +51,6 @@ protected: int currentCursor; bool animated; QCursor* cursorList; - QBitmap* bitmapList; }; #endif /*kbusyptr_h_*/