diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-01-30 20:17:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-01-30 23:52:48 +0900 |
commit | 76ef0cc47c8bbb03ae4f32680515aedf484ec5f8 (patch) | |
tree | 90d45576b52840fd52c9f22682574a44a1df6a01 /lib/widgets | |
parent | 97498570fe5cf2ec7abeb0e06920a6bb8a364cb2 (diff) | |
download | tdevelop-76ef0cc47c8bbb03ae4f32680515aedf484ec5f8.tar.gz tdevelop-76ef0cc47c8bbb03ae4f32680515aedf484ec5f8.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit da6bd0768e4304e6c2853d012c7d0686a205addb)
Diffstat (limited to 'lib/widgets')
-rw-r--r-- | lib/widgets/kdevhtmlpart.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/widgets/kdevhtmlpart.cpp b/lib/widgets/kdevhtmlpart.cpp index 7c699301..35b2216f 100644 --- a/lib/widgets/kdevhtmlpart.cpp +++ b/lib/widgets/kdevhtmlpart.cpp @@ -172,7 +172,7 @@ TQString KDevHTMLPart::context() const // Note: this function is a copy of code in tdecore/tdeconfigbase.cpp ;) static bool isUtf8(const char *buf) { int i, n; - register unsigned char c; + unsigned char c; bool gotone = false; #define F 0 /* character never appears in text */ |