diff options
Diffstat (limited to 'autotests/kconfig_compiler/test8main.cpp')
-rw-r--r-- | autotests/kconfig_compiler/test8main.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/autotests/kconfig_compiler/test8main.cpp b/autotests/kconfig_compiler/test8main.cpp index c4576911..b8fcc492 100644 --- a/autotests/kconfig_compiler/test8main.cpp +++ b/autotests/kconfig_compiler/test8main.cpp @@ -23,14 +23,14 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "test8b.h" #include <QGuiApplication> -int main( int argc, char **argv ) +int main(int argc, char **argv) { - QGuiApplication app(argc, argv); - Q_UNUSED(app); - Test8a *config1 = new Test8a( KSharedConfig::openConfig( QString() ) ); - Test8a *config2 = new Test8a(); - Test8b::self(); - delete config1; - delete config2; - return 0; + QGuiApplication app(argc, argv); + Q_UNUSED(app); + Test8a *config1 = new Test8a(KSharedConfig::openConfig(QString())); + Test8a *config2 = new Test8a(); + Test8b::self(); + delete config1; + delete config2; + return 0; } |