summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:45 +0900
commit15e0330f8ac92ed59952a569d9de20dcc8d00484 (patch)
tree6c9f3098070df614bdada6720bc12fb54267b193
parent83de0e9edd176e5fe92de0d3aa1a05584bf663ab (diff)
downloaddigikam-15e0330f8ac92ed59952a569d9de20dcc8d00484.tar.gz
digikam-15e0330f8ac92ed59952a569d9de20dcc8d00484.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--digikam/imageplugins/charcoal/charcoal.cpp4
-rw-r--r--digikam/imageplugins/coreplugin/sharpnesseditor/clapack/endfile.c4
-rw-r--r--digikam/imageplugins/coreplugin/sharpnesseditor/clapack/fmtlib.c4
-rw-r--r--digikam/imageplugins/coreplugin/sharpnesseditor/clapack/s_cmp.c2
-rw-r--r--digikam/imageplugins/coreplugin/sharpnesseditor/clapack/s_copy.c6
-rw-r--r--digikam/imageplugins/coreplugin/sharpnesseditor/clapack/sig_die.c4
-rw-r--r--digikam/imageplugins/coreplugin/sharpnesseditor/clapack/wrtfmt.c8
-rw-r--r--digikam/imageplugins/coreplugin/sharpnesseditor/matrix.cpp36
-rw-r--r--digikam/imageplugins/freerotation/freerotation.cpp2
-rw-r--r--digikam/imageplugins/raindrop/raindrop.cpp6
-rw-r--r--digikam/imageplugins/sheartool/shear.cpp2
-rw-r--r--digikam/libs/dimg/filters/dimggaussianblur.cpp2
-rw-r--r--digikam/libs/dimg/filters/dimgimagefilters.cpp6
-rw-r--r--digikam/libs/dimg/filters/dimgsharpen.cpp4
-rw-r--r--digikam/libs/dimg/loaders/jp2kloader.cpp4
-rw-r--r--digikam/libs/dimg/loaders/pngloader.cpp14
-rw-r--r--digikam/libs/greycstoration/greycstorationiface.cpp4
-rw-r--r--digikam/libs/histogram/imagehistogram.cpp2
-rw-r--r--digikam/libs/lprof/cmsmntr.cpp4
-rw-r--r--digikam/libs/lprof/cmsscn.cpp6
-rw-r--r--digikam/libs/lprof/cmssheet.cpp4
-rw-r--r--digikam/libs/sqlite2/printf.c8
-rw-r--r--digikam/libs/sqlite2/util.c8
-rw-r--r--digikam/libs/sqlite3/sqlite3.c14
-rw-r--r--digikam/libs/themeengine/texture.cpp12
25 files changed, 85 insertions, 85 deletions
diff --git a/digikam/imageplugins/charcoal/charcoal.cpp b/digikam/imageplugins/charcoal/charcoal.cpp
index 20eef60..a4c54a3 100644
--- a/digikam/imageplugins/charcoal/charcoal.cpp
+++ b/digikam/imageplugins/charcoal/charcoal.cpp
@@ -68,7 +68,7 @@ void Charcoal::filterImage(void)
// -- Applying Edge effect -----------------------------------------------
- register long i=0;
+ long i=0;
int kernelWidth = getOptimalKernelWidth(m_pencil, m_smooth);
if((int)m_orgImage.width() < kernelWidth)
@@ -222,7 +222,7 @@ int Charcoal::getOptimalKernelWidth(double radius, double sigma)
{
double normalize, value;
long kernelWidth;
- register long u;
+ long u;
if(radius > 0.0)
return((int)(2.0*ceil(radius)+1.0));
diff --git a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/endfile.c b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/endfile.c
index ddd35d9..f8802ee 100644
--- a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/endfile.c
+++ b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/endfile.c
@@ -38,9 +38,9 @@ integer f_end(alist *a)
static int
#ifdef KR_headers
-copy(from, len, to) FILE *from, *to; register long len;
+copy(from, len, to) FILE *from, *to; long len;
#else
-copy(FILE *from, register long len, FILE *to)
+copy(FILE *from, long len, FILE *to)
#endif
{
int len1;
diff --git a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/fmtlib.c b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/fmtlib.c
index 91483fc..0c25dee 100644
--- a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/fmtlib.c
+++ b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/fmtlib.c
@@ -11,13 +11,13 @@
#ifdef KR_headers
char *f__icvt(value,ndigit,sign, base) longint value; int *ndigit,*sign;
- register int base;
+ int base;
#else
char *f__icvt(longint value, int *ndigit, int *sign, int base)
#endif
{
static char buf[MAXINTLENGTH+1];
- register int i;
+ int i;
ulongint uvalue;
if(value > 0) {
diff --git a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/s_cmp.c b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/s_cmp.c
index 1e052f2..c6fd9c0 100644
--- a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/s_cmp.c
+++ b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/s_cmp.c
@@ -8,7 +8,7 @@ integer s_cmp(a0, b0, la, lb) char *a0, *b0; ftnlen la, lb;
integer s_cmp(char *a0, char *b0, ftnlen la, ftnlen lb)
#endif
{
-register unsigned char *a, *aend, *b, *bend;
+unsigned char *a, *aend, *b, *bend;
a = (unsigned char *)a0;
b = (unsigned char *)b0;
aend = a + la;
diff --git a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/s_copy.c b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/s_copy.c
index d167351..9287d7f 100644
--- a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/s_copy.c
+++ b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/s_copy.c
@@ -9,12 +9,12 @@
/* assign strings: a = b */
#ifdef KR_headers
-VOID s_copy(a, b, la, lb) register char *a, *b; ftnlen la, lb;
+VOID s_copy(a, b, la, lb) char *a, *b; ftnlen la, lb;
#else
-void s_copy(register char *a, register char *b, ftnlen la, ftnlen lb)
+void s_copy(char *a, char *b, ftnlen la, ftnlen lb)
#endif
{
- register char *aend, *bend;
+ char *aend, *bend;
aend = a + la;
diff --git a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/sig_die.c b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/sig_die.c
index dba1521..d17bc6b 100644
--- a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/sig_die.c
+++ b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/sig_die.c
@@ -8,7 +8,7 @@
#endif
#ifdef KR_headers
-void sig_die(s, kill) register char *s; int kill;
+void sig_die(s, kill) char *s; int kill;
#else
#include "stdlib.h"
#ifdef __cplusplus
@@ -16,7 +16,7 @@ extern "C" {
#endif
extern void f_exit(void);
-void sig_die(register char *s, int kill)
+void sig_die(char *s, int kill)
#endif
{
/* print error message, then clear buffers */
diff --git a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/wrtfmt.c b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/wrtfmt.c
index 477c40f..92ce295 100644
--- a/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/wrtfmt.c
+++ b/digikam/imageplugins/coreplugin/sharpnesseditor/clapack/wrtfmt.c
@@ -71,8 +71,8 @@ wrt_Z(n,w,minlen,len) Uint *n; int w, minlen; ftnlen len;
wrt_Z(Uint *n, int w, int minlen, ftnlen len)
#endif
{
- register char *s, *se;
- register int i, w1;
+ char *s, *se;
+ int i, w1;
static int one = 1;
static char hex[] = "0123456789ABCDEF";
s = (char *)n;
@@ -121,9 +121,9 @@ wrt_Z(Uint *n, int w, int minlen, ftnlen len)
static int
#ifdef KR_headers
-wrt_I(n,w,len, base) Uint *n; ftnlen len; register int base;
+wrt_I(n,w,len, base) Uint *n; ftnlen len; int base;
#else
-wrt_I(Uint *n, int w, ftnlen len, register int base)
+wrt_I(Uint *n, int w, ftnlen len, int base)
#endif
{ int ndigit,sign,spare,i;
longint x;
diff --git a/digikam/imageplugins/coreplugin/sharpnesseditor/matrix.cpp b/digikam/imageplugins/coreplugin/sharpnesseditor/matrix.cpp
index 10a12b7..cfb8afe 100644
--- a/digikam/imageplugins/coreplugin/sharpnesseditor/matrix.cpp
+++ b/digikam/imageplugins/coreplugin/sharpnesseditor/matrix.cpp
@@ -128,7 +128,7 @@ inline double RefocusMatrix::c_mat_elt (const CMat * const mat, const int col, c
void RefocusMatrix::convolve_mat (CMat * result, const CMat * const mata, const CMat * const matb)
{
- register int xr, yr, xa, ya;
+ int xr, yr, xa, ya;
for (yr = -result->radius; yr <= result->radius; yr++)
{
@@ -138,7 +138,7 @@ void RefocusMatrix::convolve_mat (CMat * result, const CMat * const mata, const
const int ya_high = TQMIN (mata->radius, yr + matb->radius);
const int xa_low = TQMAX (-mata->radius, xr - matb->radius);
const int xa_high = TQMIN (mata->radius, xr + matb->radius);
- register double val = 0.0;
+ double val = 0.0;
for (ya = ya_low; ya <= ya_high; ya++)
{
@@ -156,7 +156,7 @@ void RefocusMatrix::convolve_mat (CMat * result, const CMat * const mata, const
void RefocusMatrix::convolve_star_mat (CMat * result, const CMat * const mata, const CMat * const matb)
{
- register int xr, yr, xa, ya;
+ int xr, yr, xa, ya;
for (yr = -result->radius; yr <= result->radius; yr++)
{
@@ -166,7 +166,7 @@ void RefocusMatrix::convolve_star_mat (CMat * result, const CMat * const mata, c
const int ya_high = TQMIN (mata->radius, matb->radius - yr);
const int xa_low = TQMAX (-mata->radius, -matb->radius - xr);
const int xa_high = TQMIN (mata->radius, matb->radius - xr);
- register double val = 0.0;
+ double val = 0.0;
for (ya = ya_low; ya <= ya_high; ya++)
{
@@ -184,13 +184,13 @@ void RefocusMatrix::convolve_star_mat (CMat * result, const CMat * const mata, c
void RefocusMatrix::convolve_mat_fun (CMat * result, const CMat * const mata, double (f) (int, int))
{
- register int xr, yr, xa, ya;
+ int xr, yr, xa, ya;
for (yr = -result->radius; yr <= result->radius; yr++)
{
for (xr = -result->radius; xr <= result->radius; xr++)
{
- register double val = 0.0;
+ double val = 0.0;
for (ya = -mata->radius; ya <= mata->radius; ya++)
{
@@ -219,7 +219,7 @@ int RefocusMatrix::as_cidx (const int k, const int l)
void RefocusMatrix::print_c_mat (const CMat * const mat)
{
- register int x, y;
+ int x, y;
for (y = -mat->radius; y <= mat->radius; y++)
{
@@ -255,7 +255,7 @@ Mat *RefocusMatrix::make_s_matrix (CMat * mat, int m, double noise_factor)
{
const int mat_size = SQR (2 * m + 1);
Mat *result = allocate_matrix (mat_size, mat_size);
- register int yr, yc, xr, xc;
+ int yr, yc, xr, xc;
for (yr = -m; yr <= m; yr++)
{
@@ -285,7 +285,7 @@ Mat *RefocusMatrix::make_s_cmatrix (CMat * mat, int m, double noise_factor)
{
const int mat_size = as_cidx (m + 1, 0);
Mat *result = allocate_matrix (mat_size, mat_size);
- register int yr, yc, xr, xc;
+ int yr, yc, xr, xc;
for (yr = 0; yr <= m; yr++)
{
@@ -318,7 +318,7 @@ double RefocusMatrix::correlation (const int x, const int y, const double gamma,
Mat *RefocusMatrix::copy_vec (const CMat * const mat, const int m)
{
Mat *result = allocate_matrix (SQR (2 * m + 1), 1);
- register int x, y, index = 0;
+ int x, y, index = 0;
for (y = -m; y <= m; y++)
{
@@ -336,7 +336,7 @@ Mat *RefocusMatrix::copy_vec (const CMat * const mat, const int m)
Mat *RefocusMatrix::copy_cvec (const CMat * const mat, const int m)
{
Mat *result = allocate_matrix (as_cidx (m + 1, 0), 1);
- register int x, y, index = 0;
+ int x, y, index = 0;
for (y = 0; y <= m; y++)
{
@@ -354,7 +354,7 @@ Mat *RefocusMatrix::copy_cvec (const CMat * const mat, const int m)
CMat *RefocusMatrix::copy_cvec2mat (const Mat * const cvec, const int m)
{
CMat *result = allocate_c_mat (m);
- register int x, y;
+ int x, y;
for (y = -m; y <= m; y++)
{
@@ -370,7 +370,7 @@ CMat *RefocusMatrix::copy_cvec2mat (const Mat * const cvec, const int m)
CMat *RefocusMatrix::copy_vec2mat (const Mat * const cvec, const int m)
{
CMat *result = allocate_c_mat (m);
- register int x, y;
+ int x, y;
for (y = -m; y <= m; y++)
{
@@ -482,7 +482,7 @@ void RefocusMatrix::fill_matrix (CMat * matrix, const int m,
double f (const int, const int, const double),
const double fun_arg)
{
- register int x, y;
+ int x, y;
init_c_mat (matrix, m);
for (y = -m; y <= m; y++)
@@ -498,7 +498,7 @@ void RefocusMatrix::fill_matrix2 (CMat * matrix, const int m,
double f (const int, const int, const double, const double),
const double fun_arg1, const double fun_arg2)
{
- register int x, y;
+ int x, y;
init_c_mat (matrix, m);
for (y = -m; y <= m; y++)
@@ -512,7 +512,7 @@ void RefocusMatrix::fill_matrix2 (CMat * matrix, const int m,
void RefocusMatrix::make_gaussian_convolution (const double gradius, CMat * convolution, const int m)
{
- register int x, y;
+ int x, y;
#ifdef RF_DEBUG
DDebug() << "gauss: " << gradius << endl;
@@ -589,9 +589,9 @@ double RefocusMatrix::circle_intensity (const int x, const int y, const double r
}
else
{
- register double xlo = TQABS (x) - 0.5, xhi = TQABS (x) + 0.5,
+ double xlo = TQABS (x) - 0.5, xhi = TQABS (x) + 0.5,
ylo = TQABS (y) - 0.5, yhi = TQABS (y) + 0.5;
- register double symmetry_factor = 1, xc1, xc2;
+ double symmetry_factor = 1, xc1, xc2;
if (xlo < 0)
{
diff --git a/digikam/imageplugins/freerotation/freerotation.cpp b/digikam/imageplugins/freerotation/freerotation.cpp
index 7b445f3..3f8803d 100644
--- a/digikam/imageplugins/freerotation/freerotation.cpp
+++ b/digikam/imageplugins/freerotation/freerotation.cpp
@@ -55,7 +55,7 @@ FreeRotation::FreeRotation(Digikam::DImg *orgImage, TQObject *parent, double ang
void FreeRotation::filterImage(void)
{
int progress;
- register int w, h, nw, nh, j, i = 0;
+ int w, h, nw, nh, j, i = 0;
int nNewHeight, nNewWidth;
int nhdx, nhdy, nhsx, nhsy;
double lfSin, lfCos, lfx, lfy;
diff --git a/digikam/imageplugins/raindrop/raindrop.cpp b/digikam/imageplugins/raindrop/raindrop.cpp
index db7c8ce..7be977f 100644
--- a/digikam/imageplugins/raindrop/raindrop.cpp
+++ b/digikam/imageplugins/raindrop/raindrop.cpp
@@ -207,7 +207,7 @@ bool RainDrop::CreateRainDrop(uchar *pBits, int Width, int Height, bool sixteenB
uchar *pResBits, uchar* pStatusBits,
int X, int Y, int DropSize, double Coeff, bool bLimitRange)
{
- register int w, h, nw1, nh1, nw2, nh2;
+ int w, h, nw1, nh1, nw2, nh2;
int nHalfSize = DropSize / 2;
int nBright;
double lfRadius, lfOldRadius, lfAngle, lfDiv;
@@ -403,7 +403,7 @@ bool RainDrop::CreateRainDrop(uchar *pBits, int Width, int Height, bool sixteenB
bool RainDrop::CanBeDropped(int Width, int Height, uchar *pStatusBits, int X, int Y,
int DropSize, bool bLimitRange)
{
- register int w, h, i = 0;
+ int w, h, i = 0;
int nHalfSize = DropSize / 2;
if (pStatusBits == NULL)
@@ -433,7 +433,7 @@ bool RainDrop::CanBeDropped(int Width, int Height, uchar *pStatusBits, int X, in
bool RainDrop::SetDropStatusBits (int Width, int Height, uchar *pStatusBits,
int X, int Y, int DropSize)
{
- register int w, h, i = 0;
+ int w, h, i = 0;
int nHalfSize = DropSize / 2;
if (pStatusBits == NULL)
diff --git a/digikam/imageplugins/sheartool/shear.cpp b/digikam/imageplugins/sheartool/shear.cpp
index 3c5a2dd..29af539 100644
--- a/digikam/imageplugins/sheartool/shear.cpp
+++ b/digikam/imageplugins/sheartool/shear.cpp
@@ -58,7 +58,7 @@ Shear::Shear(Digikam::DImg *orgImage, TQObject *parent, float hAngle, float vAng
void Shear::filterImage(void)
{
int progress;
- register int x, y, p = 0, pt;
+ int x, y, p = 0, pt;
int new_width, new_height;
double nx, ny, dx, dy;
double horz_factor, vert_factor;
diff --git a/digikam/libs/dimg/filters/dimggaussianblur.cpp b/digikam/libs/dimg/filters/dimggaussianblur.cpp
index 2d333cf..63e1990 100644
--- a/digikam/libs/dimg/filters/dimggaussianblur.cpp
+++ b/digikam/libs/dimg/filters/dimggaussianblur.cpp
@@ -84,7 +84,7 @@ void DImgGaussianBlur::gaussianBlurImage(uchar *data, int width, int height, boo
int nKSize, nCenter;
double x, sd, factor, lnsd, lnfactor;
- register int i, j, n, h, w;
+ int i, j, n, h, w;
nKSize = 2 * radius + 1;
nCenter = nKSize / 2;
diff --git a/digikam/libs/dimg/filters/dimgimagefilters.cpp b/digikam/libs/dimg/filters/dimgimagefilters.cpp
index ed41704..b964ed4 100644
--- a/digikam/libs/dimg/filters/dimgimagefilters.cpp
+++ b/digikam/libs/dimg/filters/dimgimagefilters.cpp
@@ -68,7 +68,7 @@ void DImgImageFilters::equalizeImage(uchar *data, int w, int h, bool sixteenBit)
struct double_packet high, low, intensity;
struct double_packet *map;
struct int_packet *equalize_map;
- register long i;
+ long i;
// Create an histogram of the current image.
ImageHistogram *histogram = new ImageHistogram(data, w, h, sixteenBit);
@@ -217,7 +217,7 @@ void DImgImageFilters::stretchContrastImage(uchar *data, int w, int h, bool sixt
struct double_packet high, low, intensity;
struct int_packet *normalize_map;
long long number_pixels;
- register long i;
+ long i;
unsigned long threshold_intensity;
// Create an histogram of the current image.
@@ -717,7 +717,7 @@ void DImgImageFilters::channelMixerImage(uchar *data, int Width, int Height, boo
return;
}
- register int i;
+ int i;
double rnorm = CalculateNorm (rrGain, rgGain, rbGain, bPreserveLum);
double gnorm = CalculateNorm (grGain, ggGain, gbGain, bPreserveLum);
diff --git a/digikam/libs/dimg/filters/dimgsharpen.cpp b/digikam/libs/dimg/filters/dimgsharpen.cpp
index 23d6631..a27d5b1 100644
--- a/digikam/libs/dimg/filters/dimgsharpen.cpp
+++ b/digikam/libs/dimg/filters/dimgsharpen.cpp
@@ -89,7 +89,7 @@ void DImgSharpen::sharpenImage(double radius, double sigma)
}
double alpha, normalize=0.0;
- register long i=0, u, v;
+ long i=0, u, v;
int kernelWidth = getOptimalKernelWidth(radius, sigma);
@@ -216,7 +216,7 @@ int DImgSharpen::getOptimalKernelWidth(double radius, double sigma)
{
double normalize, value;
long kernelWidth;
- register long u;
+ long u;
if(radius > 0.0)
return((int)(2.0*ceil(radius)+1.0));
diff --git a/digikam/libs/dimg/loaders/jp2kloader.cpp b/digikam/libs/dimg/loaders/jp2kloader.cpp
index d68c488..1035391 100644
--- a/digikam/libs/dimg/loaders/jp2kloader.cpp
+++ b/digikam/libs/dimg/loaders/jp2kloader.cpp
@@ -100,7 +100,7 @@ bool JP2KLoader::load(const TQString& filePath, DImgLoaderObserver *observer)
// -------------------------------------------------------------------
// Initialize JPEG 2000 API.
- register long i, x, y;
+ long i, x, y;
int components[4];
unsigned int maximum_component_depth, scale[4], x_step[4], y_step[4];
unsigned long number_components;
@@ -468,7 +468,7 @@ bool JP2KLoader::save(const TQString& filePath, DImgLoaderObserver *observer)
// -------------------------------------------------------------------
// Initialize JPEG 2000 API.
- register long i, x, y;
+ long i, x, y;
unsigned long number_components;
jas_image_t *jp2_image = 0;
diff --git a/digikam/libs/dimg/loaders/pngloader.cpp b/digikam/libs/dimg/loaders/pngloader.cpp
index 6862b6e..402cf94 100644
--- a/digikam/libs/dimg/loaders/pngloader.cpp
+++ b/digikam/libs/dimg/loaders/pngloader.cpp
@@ -830,7 +830,7 @@ void PNGLoader::writeRawProfile(png_struct *ping, png_info *ping_info, char *pro
{
png_textp text;
- register long i;
+ long i;
uchar *sp;
@@ -890,11 +890,11 @@ void PNGLoader::writeRawProfile(png_struct *ping, png_info *ping_info, char *pro
size_t PNGLoader::concatenateString(char *destination, const char *source, const size_t length)
{
- register char *q;
+ char *q;
- register const char *p;
+ const char *p;
- register size_t i;
+ size_t i;
size_t count;
@@ -931,11 +931,11 @@ size_t PNGLoader::concatenateString(char *destination, const char *source, const
size_t PNGLoader::copyString(char *destination, const char *source, const size_t length)
{
- register char *q;
+ char *q;
- register const char *p;
+ const char *p;
- register size_t i;
+ size_t i;
if ( !destination || !source || length == 0 )
return 0;
diff --git a/digikam/libs/greycstoration/greycstorationiface.cpp b/digikam/libs/greycstoration/greycstorationiface.cpp
index 4f6c703..32f6051 100644
--- a/digikam/libs/greycstoration/greycstorationiface.cpp
+++ b/digikam/libs/greycstoration/greycstorationiface.cpp
@@ -172,7 +172,7 @@ void GreycstorationIface::stopComputation()
void GreycstorationIface::filterImage()
{
- register int x, y;
+ int x, y;
DDebug() << "GreycstorationIface::Initialization..." << endl;
@@ -330,7 +330,7 @@ void GreycstorationIface::inpainting()
{
// Copy the inpainting image data into a CImg type image with three channels and no alpha.
- register int x, y;
+ int x, y;
d->mask = CImg<uchar>(d->inPaintingMask.width(), d->inPaintingMask.height(), 1, 3);
uchar *ptr = d->inPaintingMask.bits();
diff --git a/digikam/libs/histogram/imagehistogram.cpp b/digikam/libs/histogram/imagehistogram.cpp
index 72eaa0e..bee5562 100644
--- a/digikam/libs/histogram/imagehistogram.cpp
+++ b/digikam/libs/histogram/imagehistogram.cpp
@@ -167,7 +167,7 @@ void ImageHistogram::run()
void ImageHistogram::calcHistogramValues()
{
- register uint i;
+ uint i;
int max;
if (d->parent)
diff --git a/digikam/libs/lprof/cmsmntr.cpp b/digikam/libs/lprof/cmsmntr.cpp
index e44211c..ed14ed5 100644
--- a/digikam/libs/lprof/cmsmntr.cpp
+++ b/digikam/libs/lprof/cmsmntr.cpp
@@ -54,7 +54,7 @@ void ClampRGB(LPVEC3 RGB)
static
-int RegressionSamplerA2B(register WORD In[], register WORD Out[], register LPVOID Cargo)
+int RegressionSamplerA2B(WORD In[], WORD Out[], LPVOID Cargo)
{
cmsCIEXYZ xyz;
cmsCIELab Lab;
@@ -95,7 +95,7 @@ int RegressionSamplerA2B(register WORD In[], register WORD Out[], register LPVOI
static
-int RegressionSamplerB2A(register WORD In[], register WORD Out[], register LPVOID Cargo)
+int RegressionSamplerB2A(WORD In[], WORD Out[], LPVOID Cargo)
{
cmsCIELab Lab;
cmsCIEXYZ xyz;
diff --git a/digikam/libs/lprof/cmsscn.cpp b/digikam/libs/lprof/cmsscn.cpp
index 3714306..b99fed8 100644
--- a/digikam/libs/lprof/cmsscn.cpp
+++ b/digikam/libs/lprof/cmsscn.cpp
@@ -139,7 +139,7 @@ BOOL cmsxScannerProfilerInit(LPSCANNERPROFILERDATA sys)
/* Auxiliar: take RGB and update gauge */
static
-void GetRGB(LPPROFILERCOMMONDATA hdr, register WORD In[], double* r, double* g, double* b)
+void GetRGB(LPPROFILERCOMMONDATA hdr, WORD In[], double* r, double* g, double* b)
{
static int Count = 0, n_old = 0;
double R, G, B;
@@ -172,7 +172,7 @@ void GetRGB(LPPROFILERCOMMONDATA hdr, register WORD In[], double* r, double* g,
/* The sampler for Lab */
static
-int RegressionSamplerLab(register WORD In[], register WORD Out[], register LPVOID Cargo)
+int RegressionSamplerLab(WORD In[], WORD Out[], LPVOID Cargo)
{
cmsCIEXYZ xyz;
cmsCIELab Lab;
@@ -235,7 +235,7 @@ int RegressionSamplerLab(register WORD In[], register WORD Out[], register LPVOI
/* The sampler for XYZ */
static
-int RegressionSamplerXYZ(register WORD In[], register WORD Out[], register LPVOID Cargo)
+int RegressionSamplerXYZ(WORD In[], WORD Out[], LPVOID Cargo)
{
cmsCIEXYZ xyz;
double r, g, b;
diff --git a/digikam/libs/lprof/cmssheet.cpp b/digikam/libs/lprof/cmssheet.cpp
index ab73d0a..cf8c569 100644
--- a/digikam/libs/lprof/cmssheet.cpp
+++ b/digikam/libs/lprof/cmssheet.cpp
@@ -470,8 +470,8 @@ void ReadReal(LPIT8 it8, int inum)
static
void InSymbol(LPIT8 it8)
{
- register char *idptr;
- register int k;
+ char *idptr;
+ int k;
SYMBOL key;
int sng;
diff --git a/digikam/libs/sqlite2/printf.c b/digikam/libs/sqlite2/printf.c
index f867d62..a5445f6 100644
--- a/digikam/libs/sqlite2/printf.c
+++ b/digikam/libs/sqlite2/printf.c
@@ -361,8 +361,8 @@ static int vxprintf(
}
bufpt = &buf[etBUFSIZE-1];
{
- register char *cset; /* Use registers for speed */
- register int base;
+ char *cset; /* Use registers for speed */
+ int base;
cset = infop->charset;
base = infop->base;
do{ /* Convert to ascii */
@@ -603,7 +603,7 @@ static int vxprintf(
** the output.
*/
if( !flag_leftjustify ){
- register int nspace;
+ int nspace;
nspace = width-length;
if( nspace>0 ){
count += nspace;
@@ -619,7 +619,7 @@ static int vxprintf(
count += length;
}
if( flag_leftjustify ){
- register int nspace;
+ int nspace;
nspace = width-length;
if( nspace>0 ){
count += nspace;
diff --git a/digikam/libs/sqlite2/util.c b/digikam/libs/sqlite2/util.c
index 3a969e3..579bf75 100644
--- a/digikam/libs/sqlite2/util.c
+++ b/digikam/libs/sqlite2/util.c
@@ -499,14 +499,14 @@ int sqliteHashNoCase(const char *z, int n){
** there is no consistency, we will define our own.
*/
int sqliteStrICmp(const char *zLeft, const char *zRight){
- register unsigned char *a, *b;
+ unsigned char *a, *b;
a = (unsigned char *)zLeft;
b = (unsigned char *)zRight;
while( *a!=0 && UpperToLower[*a]==UpperToLower[*b]){ a++; b++; }
return UpperToLower[*a] - UpperToLower[*b];
}
int sqliteStrNICmp(const char *zLeft, const char *zRight, int N){
- register unsigned char *a, *b;
+ unsigned char *a, *b;
a = (unsigned char *)zLeft;
b = (unsigned char *)zRight;
while( N-- > 0 && *a!=0 && UpperToLower[*a]==UpperToLower[*b]){ a++; b++; }
@@ -940,7 +940,7 @@ static int sqlite_utf8_to_int(const unsigned char *z){
*/
int
sqliteGlobCompare(const unsigned char *zPattern, const unsigned char *zString){
- register int c;
+ int c;
int invert;
int seen;
int c2;
@@ -1029,7 +1029,7 @@ sqliteGlobCompare(const unsigned char *zPattern, const unsigned char *zString){
*/
int
sqliteLikeCompare(const unsigned char *zPattern, const unsigned char *zString){
- register int c;
+ int c;
int c2;
while( (c = UpperToLower[*zPattern])!=0 ){
diff --git a/digikam/libs/sqlite3/sqlite3.c b/digikam/libs/sqlite3/sqlite3.c
index 3b3b067..d71872d 100644
--- a/digikam/libs/sqlite3/sqlite3.c
+++ b/digikam/libs/sqlite3/sqlite3.c
@@ -14414,8 +14414,8 @@ static void vxprintf(
bufpt -= 2;
}
{
- register const char *cset; /* Use registers for speed */
- register int base;
+ const char *cset; /* Use registers for speed */
+ int base;
cset = &aDigits[infop->charset];
base = infop->base;
do{ /* Convert to ascii */
@@ -14684,7 +14684,7 @@ static void vxprintf(
** the output.
*/
if( !flag_leftjustify ){
- register int nspace;
+ int nspace;
nspace = width-length;
if( nspace>0 ){
appendSpace(pAccum, nspace);
@@ -14694,7 +14694,7 @@ static void vxprintf(
sqlite3StrAccumAppend(pAccum, bufpt, length);
}
if( flag_leftjustify ){
- register int nspace;
+ int nspace;
nspace = width-length;
if( nspace>0 ){
appendSpace(pAccum, nspace);
@@ -16201,14 +16201,14 @@ SQLITE_PRIVATE const unsigned char sqlite3UpperToLower[] = {
** there is no consistency, we will define our own.
*/
SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){
- register unsigned char *a, *b;
+ unsigned char *a, *b;
a = (unsigned char *)zLeft;
b = (unsigned char *)zRight;
while( *a!=0 && UpperToLower[*a]==UpperToLower[*b]){ a++; b++; }
return UpperToLower[*a] - UpperToLower[*b];
}
SQLITE_PRIVATE int sqlite3StrNICmp(const char *zLeft, const char *zRight, int N){
- register unsigned char *a, *b;
+ unsigned char *a, *b;
a = (unsigned char *)zLeft;
b = (unsigned char *)zRight;
while( N-- > 0 && *a!=0 && UpperToLower[*a]==UpperToLower[*b]){ a++; b++; }
@@ -42104,7 +42104,7 @@ static void updateMaxBlobsize(Mem *p){
#define Release(P) if((P)->flags&MEM_Dyn){ sqlite3VdbeMemRelease(P); }
/*
-** Convert the given register into a string if it isn't one
+** Convert the given into a string if it isn't one
** already. Return non-zero if a malloc() fails.
*/
#define Stringify(P, enc) \
diff --git a/digikam/libs/themeengine/texture.cpp b/digikam/libs/themeengine/texture.cpp
index c8c64bc..e728dd5 100644
--- a/digikam/libs/themeengine/texture.cpp
+++ b/digikam/libs/themeengine/texture.cpp
@@ -207,7 +207,7 @@ void Texture::doHgradient()
xb = (float) d->color0.blue();
unsigned char *pr = d->red, *pg = d->green, *pb = d->blue;
- register int x, y;
+ int x, y;
drx = (float) (d->color1.red() - d->color0.red());
dgx = (float) (d->color1.green() - d->color0.green());
@@ -252,7 +252,7 @@ void Texture::doVgradient()
dby /= d->height;
unsigned char *pr = d->red, *pg = d->green, *pb = d->blue;
- register int y;
+ int y;
for (y = 0; y < d->height; y++, pr += d->width, pg += d->width, pb += d->width) {
memset(pr, (unsigned char) yr, d->width);
@@ -279,7 +279,7 @@ void Texture::doDgradient()
unsigned int *xt = xtable;
unsigned int *yt = ytable;
- register int x, y;
+ int x, y;
dry = drx = (float) (d->color1.red() - d->color0.red());
dgy = dgx = (float) (d->color1.green() - d->color0.green());
@@ -337,8 +337,8 @@ void Texture::doBevel()
{
unsigned char *pr = d->red, *pg = d->green, *pb = d->blue;
- register unsigned char r, g, b, rr ,gg ,bb;
- register unsigned int w = d->width, h = d->height - 1, wh = w * h;
+ unsigned char r, g, b, rr ,gg ,bb;
+ unsigned int w = d->width, h = d->height - 1, wh = w * h;
while (--w)
{
@@ -479,7 +479,7 @@ void Texture::buildImage()
unsigned int* bits = (unsigned int*) image.bits();
- register int p;
+ int p;
for (p =0; p < d->width*d->height; p++)
{
*bits = 0xff << 24 | *pr << 16 | *pg << 8 | *pb;