diff options
author | Renato Araujo Oliveira Filho <renato.filho@canonical.com> | 2012-11-22 16:13:02 -0300 |
---|---|---|
committer | Renato Araujo Oliveira Filho <renato.filho@canonical.com> | 2012-11-22 16:13:02 -0300 |
commit | a745160b7a3460f25fa52f9902e306e071949346 (patch) | |
tree | 3f57894fdaae09304b7a759c8026947110743b33 /tests | |
parent | 04391e9723278f8bb0a0985abd50aa9c3455980d (diff) | |
download | qmenumodel-a745160b7a3460f25fa52f9902e306e071949346.tar.gz qmenumodel-a745160b7a3460f25fa52f9902e306e071949346.tar.bz2 qmenumodel-a745160b7a3460f25fa52f9902e306e071949346.zip |
Removed QAction dependecy from QStateAction.
Exported activate function on QStateAction.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/client/actiongrouptest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/client/actiongrouptest.cpp b/tests/client/actiongrouptest.cpp index 6598d2e..3e0065f 100644 --- a/tests/client/actiongrouptest.cpp +++ b/tests/client/actiongrouptest.cpp @@ -141,7 +141,7 @@ private Q_SLOTS: QStateAction *act = m_actionGroup.action(action.toString()); QVERIFY(act); - act->trigger(); + act->activate(); // wait for dbus propagation QTest::qWait(500); |