From d23a290dae52eec26bb4fd772168f38bd6e59f4e Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Thu, 13 Jan 2022 12:51:32 +0100 Subject: Fix all build warnings --- tests/client/actiongrouptest.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tests/client') diff --git a/tests/client/actiongrouptest.cpp b/tests/client/actiongrouptest.cpp index 3ab329c..f2621eb 100644 --- a/tests/client/actiongrouptest.cpp +++ b/tests/client/actiongrouptest.cpp @@ -1,5 +1,6 @@ /* * Copyright 2012 Canonical Ltd. + * Copyright 2022 Robert Tari * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by @@ -15,6 +16,7 @@ * * Authors: * Renato Araujo Oliveira Filho + * Robert Tari */ #include "qdbusmenumodel.h" @@ -138,7 +140,7 @@ private Q_SLOTS: void testActionName() { - QStateAction *act; + QStateAction *act = nullptr; getMenuAction(&act, 1); QCOMPARE(act->property("name").toString(), QString("Menu1Act")); } @@ -148,7 +150,7 @@ private Q_SLOTS: */ void testStringActionActivation() { - QStateAction *act; + QStateAction *act = nullptr; getMenuAction(&act, 1); act->activate(QVariant("42")); @@ -162,7 +164,7 @@ private Q_SLOTS: void testStringActionActivationByVariantString() { - QStateAction *act; + QStateAction *act = nullptr; getMenuAction(&act, 1); act->activateByVariantString("\"53\""); -- cgit v1.2.3