summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Fernengel <harald@trolltech.com>2009-05-08 11:25:58 (GMT)
committerHarald Fernengel <harald@trolltech.com>2009-05-08 11:26:30 (GMT)
commitf64bcba9338928107bb4bfc1282b94aa2f696557 (patch)
tree74d037c08a97744ccd22fd8e11d8f901ee710e4f /src
parentfafd6f5a43d72e91bc511b9738eae6f087eb8073 (diff)
downloadQt-f64bcba9338928107bb4bfc1282b94aa2f696557.zip
Qt-f64bcba9338928107bb4bfc1282b94aa2f696557.tar.gz
Qt-f64bcba9338928107bb4bfc1282b94aa2f696557.tar.bz2
compile?
Diffstat (limited to 'src')
-rw-r--r--src/corelib/tools/qstring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qstring.h b/src/corelib/tools/qstring.h
index b25881f..69c4f2f 100644
--- a/src/corelib/tools/qstring.h
+++ b/src/corelib/tools/qstring.h
@@ -113,7 +113,7 @@ public:
int capacity() const;
inline void reserve(int size);
- inline void squeeze() { if (d->size < d->alloc || ref != 1) realloc(); d->capacity = 0;}
+ inline void squeeze() { if (d->size < d->alloc || d->ref != 1) realloc(); d->capacity = 0;}
inline const QChar *unicode() const;
inline QChar *data();