diff options
author | Bea Lam <bea.lam@nokia.com> | 2009-10-29 05:48:41 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2009-10-29 05:48:41 (GMT) |
commit | 0355027fc68e7ceafe0ee1d439772b0b00656e09 (patch) | |
tree | 928f13b5493f59b54dc59c6857f03f612b7e5c4e /tools/qmldebugger/standalone/watchtable.cpp | |
parent | 14a30e841243fa31dd8fe024000e703f1985ef31 (diff) | |
download | Qt-0355027fc68e7ceafe0ee1d439772b0b00656e09.zip Qt-0355027fc68e7ceafe0ee1d439772b0b00656e09.tar.gz Qt-0355027fc68e7ceafe0ee1d439772b0b00656e09.tar.bz2 |
Minor improvements
Diffstat (limited to 'tools/qmldebugger/standalone/watchtable.cpp')
-rw-r--r-- | tools/qmldebugger/standalone/watchtable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmldebugger/standalone/watchtable.cpp b/tools/qmldebugger/standalone/watchtable.cpp index 19f034e..7483d28 100644 --- a/tools/qmldebugger/standalone/watchtable.cpp +++ b/tools/qmldebugger/standalone/watchtable.cpp @@ -217,7 +217,7 @@ void WatchTableModel::togglePropertyWatch(const QmlDebugObjectReference &object, + QLatin1String(" on\n") + object.className() + QLatin1String(":\n") - + (object.name().isEmpty() ? QLatin1String("<unnamed>") : object.name()); + + (object.name().isEmpty() ? QLatin1String("<unnamed object>") : object.name()); addWatch(watch, desc); emit watchCreated(watch); } |