Removed explicit usage of the 'register' keyword.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/2/head
Michele Calgaro 5 years ago
parent 61c25d7e11
commit 9506fd9461
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -3,7 +3,7 @@
// ------------------- // -------------------
// Baghira window decoration for KDE // Baghira window decoration for KDE
// ------------------- // -------------------
// Copyright (c) 2004, 2005 Thomas Lübking // Copyright (c) 2004, 2005 Thomas L<EFBFBD>bking
// Please see the header file for copyright and license information. // Please see the header file for copyright and license information.
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
@ -836,10 +836,10 @@ static bool blend( const TQImage & upper, const TQImage & lower, TQImage & outpu
output = lower.copy(); output = lower.copy();
register uchar *i, *o; uchar *i, *o;
register int a; int a;
register int col; int col;
register int w = upper.width(); int w = upper.width();
int row(upper.height() - 1); int row(upper.height() - 1);
do do

@ -47,10 +47,10 @@ static bool blend( const TQImage & upper, const TQImage & lower, TQImage & outpu
output = lower.copy(); output = lower.copy();
register uchar *i, *o; uchar *i, *o;
register int a; int a;
register int col; int col;
register int w = upper.width(); int w = upper.width();
int row(upper.height() - 1); int row(upper.height() - 1);
do do

Loading…
Cancel
Save