diff options
| author | Thiago Macieira <thiago@kde.org> | 2006-05-06 10:37:59 +0000 | 
|---|---|---|
| committer | Thiago Macieira <thiago@kde.org> | 2006-05-06 10:37:59 +0000 | 
| commit | c7f3c89ee94925a65466a140841695094fd23bd7 (patch) | |
| tree | 102c0d928a09eddead14ca702e6d45a906316955 /qt/qdbusintegrator.cpp | |
| parent | 50266d4190c2a9e9f8a58ff2a117103e6183726b (diff) | |
	* qt/qdbusmessage.cpp:
	* qt/qdbustypehelper_p.h:
	* qt/qdbusintegrator.cpp: gcc 3.4 doesn't like Q_FOREACH when
	the list is a const-reference
Diffstat (limited to 'qt/qdbusintegrator.cpp')
| -rw-r--r-- | qt/qdbusintegrator.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/qt/qdbusintegrator.cpp b/qt/qdbusintegrator.cpp index 3f907256..dc038abb 100644 --- a/qt/qdbusintegrator.cpp +++ b/qt/qdbusintegrator.cpp @@ -1097,7 +1097,7 @@ static bool applyForObject(QDBusConnectionPrivate::ObjectTreeNode *root, const Q                  return true;              } -            const QObjectList &children = obj->children(); +            const QObjectList children = obj->children();              // find a child with the proper name              QObject *next = 0; | 
