Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanek Bevendorff <janek@jbev.net>2017-03-10 17:58:42 +0300
committerJanek Bevendorff <janek@jbev.net>2017-03-10 18:12:02 +0300
commit8d487d31a4c757a7b1f4faad3af85737d32961d5 (patch)
tree4142f7f2cb1baa429be2f59d2b81cecea9edfc57 /tests/modeltest.h
parent4c0e2af6e3912142a021e773f51cd62fb12aed53 (diff)
Replace Q_EMIT, Q_SIGNALS and Q_SLOTS macros with MOC keywords
Diffstat (limited to 'tests/modeltest.h')
-rw-r--r--tests/modeltest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/modeltest.h b/tests/modeltest.h
index 3dcf18ceb..fdc5cf2f6 100644
--- a/tests/modeltest.h
+++ b/tests/modeltest.h
@@ -46,7 +46,7 @@ class ModelTest : public QObject
public:
ModelTest( QAbstractItemModel *model, QObject *parent = 0 );
-private Q_SLOTS:
+private slots:
void nonDestructiveBasicTest();
void rowCount();
void columnCount();
@@ -55,7 +55,7 @@ private Q_SLOTS:
void parent();
void data();
-protected Q_SLOTS:
+protected slots:
void runAllTests();
void layoutAboutToBeChanged();
void layoutChanged();