SVN commit 1208681 by dfaure: Test that creating a KConfig works (no warnings). CCBUG: 225636 M +5 -0 qcoreapptest.cpp --- trunk/KDE/kdelibs/kdecore/tests/qcoreapptest.cpp #1208680:1208681 @@ -23,6 +23,7 @@ #include #include #include +#include #include int main(int argc, char **argv) @@ -36,6 +37,10 @@ const QString ok = i18n("OK"); Q_UNUSED(ok); + // Test that KConfig works + KConfig foo("foorc"); + foo.group("group").writeEntry("test", "val"); + return 0; }