diff options
Diffstat (limited to 'autotests/kconfig_compiler/test_dpointer_main.cpp')
-rw-r--r-- | autotests/kconfig_compiler/test_dpointer_main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/autotests/kconfig_compiler/test_dpointer_main.cpp b/autotests/kconfig_compiler/test_dpointer_main.cpp index 6e4cb806..884b1e1b 100644 --- a/autotests/kconfig_compiler/test_dpointer_main.cpp +++ b/autotests/kconfig_compiler/test_dpointer_main.cpp @@ -22,11 +22,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "test_dpointer.h" #include <QGuiApplication> -int main( int argc, char **argv ) +int main(int argc, char **argv) { - QGuiApplication app(argc, argv); - Q_UNUSED(app); - TestDPointer *t = TestDPointer::self(); - delete t; - return 0; + QGuiApplication app(argc, argv); + Q_UNUSED(app); + TestDPointer *t = TestDPointer::self(); + delete t; + return 0; } |