Stop Q_AUTOTEST_EXPORTing QKeyBinding and QKeySequencePrivate

The QKeySequence test no longer uses private members (since commit
725bdc3fd2), so that is no longer needed.

Also, remove the unused include from the test.

Change-Id: I4d252bb3efd7282f74c44e48444c23ab51d48ea5
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
bb10
Dmitry Shachnev 2016-02-01 11:40:48 +03:00
parent d10bfff89a
commit b84c61b088
2 changed files with 2 additions and 3 deletions

View File

@ -52,7 +52,7 @@
QT_BEGIN_NAMESPACE
#ifndef QT_NO_SHORTCUT
struct Q_AUTOTEST_EXPORT QKeyBinding
struct QKeyBinding
{
QKeySequence::StandardKey standardKey;
uchar priority;
@ -60,7 +60,7 @@ struct Q_AUTOTEST_EXPORT QKeyBinding
uint platform;
};
class Q_AUTOTEST_EXPORT QKeySequencePrivate
class QKeySequencePrivate
{
public:
enum { MaxKeyCount = 4 }; // also used in QKeySequenceEdit

View File

@ -36,7 +36,6 @@
#include <qkeysequence.h>
#include <qpa/qplatformtheme.h>
#include <qpa/qplatformtheme_p.h>
#include <private/qkeysequence_p.h>
#include <private/qguiapplication_p.h>
#include <QTranslator>
#include <QLibraryInfo>