diff options
author | Michele Calgaro <[email protected]> | 2020-01-30 20:17:55 +0900 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-07-26 11:27:23 +0200 |
commit | 443bb972fa23026cdd48cfd5976b210c5dd470eb (patch) | |
tree | 47d4e11b136dd8e52d2fae0b0f544d0f6419286f /deco/config/aquariusbutton.cc | |
parent | e257d53f647aad4c65d73eb01e9e14464d9b2b16 (diff) | |
download | tde-style-baghira-443bb972fa23026cdd48cfd5976b210c5dd470eb.tar.gz tde-style-baghira-443bb972fa23026cdd48cfd5976b210c5dd470eb.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 9506fd9461a545edda3fa99d794a9bc1a6d5f508)
Diffstat (limited to 'deco/config/aquariusbutton.cc')
-rw-r--r-- | deco/config/aquariusbutton.cc | 8 |
1 files changed, 4 insertions, 4 deletions
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 |