summaryrefslogtreecommitdiffstats
path: root/src/corelib/codecs
diff options
context:
space:
mode:
authorThierry Bastian <thierry.bastian@nokia.com>2009-06-09 08:51:26 (GMT)
committerThierry Bastian <thierry.bastian@nokia.com>2009-06-09 08:51:56 (GMT)
commit91ceb21d1d5f6447a47853b6625fb51d2f21cf16 (patch)
tree5148e804a2d1bc8e794d8565bd81606f0bac29e0 /src/corelib/codecs
parent662d1db6ee1a78c298acc11e7528e73c0415fc75 (diff)
downloadQt-91ceb21d1d5f6447a47853b6625fb51d2f21cf16.zip
Qt-91ceb21d1d5f6447a47853b6625fb51d2f21cf16.tar.gz
Qt-91ceb21d1d5f6447a47853b6625fb51d2f21cf16.tar.bz2
small refactoring to reduce memory usage of static data
Diffstat (limited to 'src/corelib/codecs')
-rw-r--r--src/corelib/codecs/qisciicodec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/codecs/qisciicodec.cpp b/src/corelib/codecs/qisciicodec.cpp
index dd2bc8d..de1e477 100644
--- a/src/corelib/codecs/qisciicodec.cpp
+++ b/src/corelib/codecs/qisciicodec.cpp
@@ -55,7 +55,7 @@ QT_BEGIN_NAMESPACE
struct Codecs {
- const char *name;
+ const char name[10];
ushort base;
};