summaryrefslogtreecommitdiffstats
path: root/src/kernel/qwmatrix.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 23:58:41 +0900
commitce9614515fa863c4a66870f5288e417eceaf9106 (patch)
tree46822e581173d96db101d0c8521fa1730cd09602 /src/kernel/qwmatrix.cpp
parentcd2dc5026e152d6cf57895fe4f41cabdf2bb3eca (diff)
downloadtqt-ce9614515fa863c4a66870f5288e417eceaf9106.tar.gz
tqt-ce9614515fa863c4a66870f5288e417eceaf9106.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 99e56ba8db70324cc5c7ab416a3b48171613bd59)
Diffstat (limited to 'src/kernel/qwmatrix.cpp')
-rw-r--r--src/kernel/qwmatrix.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/qwmatrix.cpp b/src/kernel/qwmatrix.cpp
index 06a1068f2..63138fddf 100644
--- a/src/kernel/qwmatrix.cpp
+++ b/src/kernel/qwmatrix.cpp
@@ -724,8 +724,8 @@ TQRegion TQWMatrix::operator * (const TQRegion &r ) const
return r;
TQMemArray<TQRect> rects = r.rects();
TQRegion result;
- register TQRect *rect = rects.data();
- register int i = rects.size();
+ TQRect *rect = rects.data();
+ int i = rects.size();
if ( _m12 == 0.0F && _m21 == 0.0F && _m11 > 1.0F && _m22 > 1.0F ) {
// simple case, no rotation
while ( i ) {