diff --git a/tests/manual/gdbdebugger/simple/app.cpp b/tests/manual/gdbdebugger/simple/app.cpp index ce21d3e651d40c178cc5a4a13e852b05463e47fb..5eb37d1447dbaf074df40004be60fd3da85a2d29 100644 --- a/tests/manual/gdbdebugger/simple/app.cpp +++ b/tests/manual/gdbdebugger/simple/app.cpp @@ -582,6 +582,14 @@ void testQLinkedList() v.push_back("dd"); } +void testQLocale() +{ + QLocale loc = QLocale::system(); + QString s = loc.name(); + //QVariant v = loc; + int i = 1; +} + void testQList() { QList<int> big; @@ -1886,6 +1894,7 @@ int main(int argc, char *argv[]) //testQSettings(); //testWCout0(); //testWCout(); + testQLocale(); testColor(); testQRegion(); testStuff();