Skip to content

Commit

Permalink
clazy: Use more specific includes for QTest header file. (2 more files)
Browse files Browse the repository at this point in the history
Replace includes of the module wide <QtTest/QtTest> header with the
<QTest> class header.  The former includes *all* of the headers from
the QtTest and QtCore directories, while the latter only includes the
necessary header files for the QTest object.
  • Loading branch information
linuxdude42 committed Feb 3, 2024
1 parent 40f6434 commit 2b3a6c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -18,7 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include <QtTest>
#include <QTest>
#include <iostream>
#include "libmythmetadata/musicmetadata.h"
#include "libmythmetadata/metadatagrabber.h"
Expand Down
Expand Up @@ -18,7 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include <QtTest>
#include <QTest>

class TestDataContracts: public QObject
{
Expand Down

0 comments on commit 2b3a6c5

Please sign in to comment.