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/objectpropertiesview.cpp | |
parent | 14a30e841243fa31dd8fe024000e703f1985ef31 (diff) | |
download | Qt-0355027fc68e7ceafe0ee1d439772b0b00656e09.zip Qt-0355027fc68e7ceafe0ee1d439772b0b00656e09.tar.gz Qt-0355027fc68e7ceafe0ee1d439772b0b00656e09.tar.bz2 |
Minor improvements
Diffstat (limited to 'tools/qmldebugger/standalone/objectpropertiesview.cpp')
-rw-r--r-- | tools/qmldebugger/standalone/objectpropertiesview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmldebugger/standalone/objectpropertiesview.cpp b/tools/qmldebugger/standalone/objectpropertiesview.cpp index d6fefa0..b8e10a3 100644 --- a/tools/qmldebugger/standalone/objectpropertiesview.cpp +++ b/tools/qmldebugger/standalone/objectpropertiesview.cpp @@ -141,7 +141,7 @@ void ObjectPropertiesView::setPropertyValue(PropertiesViewItem *item, const QVar item->setExpanded(false); } else { - item->setText(1, (value.isNull() ? QLatin1String("<null>") : value.toString())); + item->setText(1, (value.isNull() ? QLatin1String("<no value>") : value.toString())); item->setExpanded(true); } |