diff options
Diffstat (limited to 'style/qtcurve.cpp')
-rw-r--r-- | style/qtcurve.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/style/qtcurve.cpp b/style/qtcurve.cpp index aeb1dad..5d35d24 100644 --- a/style/qtcurve.cpp +++ b/style/qtcurve.cpp @@ -7442,10 +7442,10 @@ void QtCurveStyle::drawGradient(const TQColor &top, const TQColor &bot, r.coords(&rx, &ry, &rx2, &ry2); - register int rl(rTop << 16); - register int gl(gTop << 16); - register int bl(bTop << 16); - register int i; + int rl(rTop << 16); + int gl(gTop << 16); + int bl(bTop << 16); + int i; int dr(((1<<16) * (bot.red() - rTop)) / size), dg(((1<<16) * (bot.green() - gTop)) / size), |