summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2010-08-12 12:35:53 +0200
committerhjk <qtc-committer@nokia.com>2010-08-12 12:38:22 +0200
commit1c303fc80e8c3d84598db3c0215fe70ce8d5398f (patch)
treefba187fa75e66ecf42e7f72e4c801d1ac5755f50
parente253896b58ded12cf68c4cd5937e383a0342488b (diff)
downloadqt-creator-1c303fc80e8c3d84598db3c0215fe70ce8d5398f.tar.gz
debugger: fix dumper output of QLocale::timeFormat()
-rw-r--r--share/qtcreator/gdbmacros/gdbmacros.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py
index 2c7840e0ec..60869f6e8d 100644
--- a/share/qtcreator/gdbmacros/gdbmacros.py
+++ b/share/qtcreator/gdbmacros/gdbmacros.py
@@ -491,9 +491,9 @@ def qdump__QLocale(d, item):
d.putCallItem("measurementSystem", item, "measurementSystem()")
d.putCallItem("numberOptions", item, "numberOptions()")
d.putCallItem("timeFormat_(short)", item,
- "timeFormat(" + d.ns + "QLocale::ShortFormat)")
+ "timeFormat('" + d.ns + "QLocale::ShortFormat')")
d.putCallItem("timeFormat_(long)", item,
- "timeFormat(" + d.ns + "QLocale::LongFormat)")
+ "timeFormat('" + d.ns + "QLocale::LongFormat')")
d.putCallItem("decimalPoint", item, "decimalPoint()")
d.putCallItem("exponential", item, "exponential()")
d.putCallItem("percent", item, "percent()")