summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:55 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:55 +0900
commit9506fd9461a545edda3fa99d794a9bc1a6d5f508 (patch)
treeb40ed16c7012939204711c3053272fe4eb566334
parent61c25d7e110247510b30a53567b7d940adcc868c (diff)
downloadtde-style-baghira-9506fd9461a545edda3fa99d794a9bc1a6d5f508.tar.gz
tde-style-baghira-9506fd9461a545edda3fa99d794a9bc1a6d5f508.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--deco/baghiraclient.cc10
-rw-r--r--deco/config/aquariusbutton.cc8
2 files changed, 9 insertions, 9 deletions
diff --git a/deco/baghiraclient.cc b/deco/baghiraclient.cc
index 68e1d58..64d6131 100644
--- a/deco/baghiraclient.cc
+++ b/deco/baghiraclient.cc
@@ -3,7 +3,7 @@
// -------------------
// Baghira window decoration for KDE
// -------------------
-// Copyright (c) 2004, 2005 Thomas Lübking
+// Copyright (c) 2004, 2005 Thomas L�bking
// 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();
- register uchar *i, *o;
- register int a;
- register int col;
- register int w = upper.width();
+ uchar *i, *o;
+ int a;
+ int col;
+ int w = upper.width();
int row(upper.height() - 1);
do
diff --git a/deco/config/aquariusbutton.cc b/deco/config/aquariusbutton.cc
index dcc1638..6a8011f 100644
--- a/deco/config/aquariusbutton.cc
+++ b/deco/config/aquariusbutton.cc
@@ -47,10 +47,10 @@ static bool blend( const TQImage & upper, const TQImage & lower, TQImage & outpu
output = lower.copy();
- register uchar *i, *o;
- register int a;
- register int col;
- register int w = upper.width();
+ uchar *i, *o;
+ int a;
+ int col;
+ int w = upper.width();
int row(upper.height() - 1);
do