From 27edf28be2772229a7974a007313ea30d92c3ffd Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 22:19:39 +0000 Subject: rename the following methods: tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- noatun/modules/kjofol-skin/kjtextdisplay.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'noatun/modules/kjofol-skin/kjtextdisplay.cpp') diff --git a/noatun/modules/kjofol-skin/kjtextdisplay.cpp b/noatun/modules/kjofol-skin/kjtextdisplay.cpp index ab583a24..e0d3028e 100644 --- a/noatun/modules/kjofol-skin/kjtextdisplay.cpp +++ b/noatun/modules/kjofol-skin/kjtextdisplay.cpp @@ -90,12 +90,12 @@ void KJFilename::timerEvent(TQTimerEvent *) int height = mView.height(); int width = mView.width(); - TQBitmap cycleMask ( mDistance, height ); // temporary-space for moving parts of the tqmask + TQBitmap cycleMask ( mDistance, height ); // temporary-space for moving parts of the mask TQPixmap cycle ( mDistance, height ); // temporary-space for moving parts of the pixmap - TQBitmap newMask ( *mView.tqmask() ); // save old tqmask + TQBitmap newMask ( *mView.mask() ); // save old mask - // copy tqmask like the same way we're doing it with the pixmap - // a tqmask does not get copied on a bitblt automatically, we have to do + // copy mask like the same way we're doing it with the pixmap + // a mask does not get copied on a bitblt automatically, we have to do // it "by hand" bitBlt(&cycleMask, 0,0, &newMask, 0,0, mDistance, height, TQt::CopyROP); bitBlt(&newMask, 0,0, &newMask, mDistance, 0, width-mDistance, height, TQt::CopyROP); @@ -105,7 +105,7 @@ void KJFilename::timerEvent(TQTimerEvent *) bitBlt(&mView, 0,0, &mView, mDistance, 0, width-mDistance, height, TQt::CopyROP); bitBlt(&mView, width-mDistance, 0, &cycle, 0,0, mDistance, height, TQt::CopyROP); - // apply the newly created tqmask + // apply the newly created mask mView.setMask(newMask); tqrepaint(); @@ -227,7 +227,7 @@ void KJTime::paint(TQPainter *p, const TQRect &) // draw background into buffer bitBlt ( &temp, 0, 0, mBack, 0, 0, -1, -1, TQt::CopyROP ); - // draw time-display into buffer (that's a pixmap with a tqmask applied) + // draw time-display into buffer (that's a pixmap with a mask applied) bitBlt( &temp, 0, 0, &mTime, 0, 0, rect().width(), rect().height(), TQt::CopyROP); // and draw it on screen @@ -584,7 +584,7 @@ void KJFileInfo::paint(TQPainter *p, const TQRect &) // draw background into buffer bitBlt ( &temp, 0, 0, mBack, 0, 0, -1, -1, TQt::CopyROP ); - // draw time-display into buffer (that's a pixmap with a tqmask applied) + // draw time-display into buffer (that's a pixmap with a mask applied) bitBlt( &temp, 0, 0, &mTime, 0, 0, rect().width(), rect().height(), TQt::CopyROP); // and draw it on screen -- cgit v1.2.3