aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test8main.cpp
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2013-12-18 09:53:59 +0100
committerDavid Faure <faure@kde.org>2013-12-18 09:53:59 +0100
commit159963832457e6307282308455330acc7b5bd153 (patch)
treece1cc0234d37e9afc75bc86d734beb963ed57d02 /autotests/kconfig_compiler/test8main.cpp
parent867e7a50e6396338ab4fe9aa22ad141e4cd344d2 (diff)
downloadkconfig-159963832457e6307282308455330acc7b5bd153.tar.gz
kconfig-159963832457e6307282308455330acc7b5bd153.tar.bz2
Code reformatted using kde-dev-scripts/astyle-kdelibs.
Use git blame -w 867e7a5 to show authorship as it was before this commit.
Diffstat (limited to 'autotests/kconfig_compiler/test8main.cpp')
-rw-r--r--autotests/kconfig_compiler/test8main.cpp18
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;
}