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:35:53 +0200
commit23dde235cf8adcc0b39a53402db25fee21208a49 (patch)
treefaff8e708ed9837674f8a8d014f9a94b50e7d114
parent3d86ce92c01dccb7bd7aa438d344087ade800961 (diff)
downloadqt-creator-23dde235cf8adcc0b39a53402db25fee21208a49.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 f6b05a6adc..804e0e2412 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()")