summaryrefslogtreecommitdiffstats
path: root/kwin
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
commit6171b5113040c768f68b673ec0e8ae2f82c64391 (patch)
treef67c2b1d073d34517739a905e4e550ec2d675deb /kwin
parent0ec9a2e4ecb64811b592c6736bc47fadadc0e27f (diff)
downloadtdebase-6171b5113040c768f68b673ec0e8ae2f82c64391.tar.gz
tdebase-6171b5113040c768f68b673ec0e8ae2f82c64391.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kwin')
-rw-r--r--kwin/lib/kcommondecoration.h2
-rw-r--r--kwin/lib/kdecoration.h4
-rw-r--r--kwin/tools/decobenchmark/preview.cpp2
-rw-r--r--kwin/workspace.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/kwin/lib/kcommondecoration.h b/kwin/lib/kcommondecoration.h
index 4dcaf51fb..ff720ab91 100644
--- a/kwin/lib/kcommondecoration.h
+++ b/kwin/lib/kcommondecoration.h
@@ -202,7 +202,7 @@ class KWIN_EXPORT KCommonDecoration : public KDecoration
*/
void updateLayout() const;
/**
- * Makes sure all buttons are tqrepainted.
+ * Makes sure all buttons are repainted.
*/
void updateButtons() const;
/**
diff --git a/kwin/lib/kdecoration.h b/kwin/lib/kdecoration.h
index 61c3d924f..37dc3f69a 100644
--- a/kwin/lib/kdecoration.h
+++ b/kwin/lib/kdecoration.h
@@ -573,13 +573,13 @@ class KWIN_EXPORT KDecoration
* whether it's shaded. Decorations often turn off their bottom border when the
* window is shaded, and turn off their left/right/bottom borders when
* the window is maximized and moving and resizing of maximized windows is disabled.
- * This function mustn't do any tqrepaints or resizes. Also, if the sizes returned
+ * This function mustn't do any repaints or resizes. Also, if the sizes returned
* by this function don't match the real values, this may result in drawing errors
* or other problems.
*
* @see KDecorationOptions::moveResizeMaximizedWindows()
*/
- // mustn't do any tqrepaints, resizes or anything like that
+ // mustn't do any repaints, resizes or anything like that
virtual void borders( int& left, int& right, int& top, int& bottom ) const = 0;
/**
* This method is called by kwin when the style should resize the decoration window.
diff --git a/kwin/tools/decobenchmark/preview.cpp b/kwin/tools/decobenchmark/preview.cpp
index e4dfd0ec1..50a12fb24 100644
--- a/kwin/tools/decobenchmark/preview.cpp
+++ b/kwin/tools/decobenchmark/preview.cpp
@@ -61,7 +61,7 @@ KDecorationPreview::~KDecorationPreview()
void KDecorationPreview::performRepaintTest(int n)
{
- kdDebug() << "start " << n << " tqrepaints..." << endl;
+ kdDebug() << "start " << n << " repaints..." << endl;
bridge->setCaption("Deco Benchmark");
deco->captionChange();
positionPreviews(0);
diff --git a/kwin/workspace.cpp b/kwin/workspace.cpp
index 48c8494bd..078d4d51b 100644
--- a/kwin/workspace.cpp
+++ b/kwin/workspace.cpp
@@ -1145,7 +1145,7 @@ void Workspace::refresh()
going to be hidden are first obscured by new windows with no background
( i.e. transparent ) placed right below the windows. These invisible windows
are removed after the switch is complete.
- Reduces desktop ( wallpaper ) tqrepaints during desktop switching
+ Reduces desktop ( wallpaper ) repaints during desktop switching
*/
class ObscuringWindows
{