diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33012-Q_SIGNAL_SLOT.cpp')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33012-Q_SIGNAL_SLOT.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33012-Q_SIGNAL_SLOT.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33012-Q_SIGNAL_SLOT.cpp deleted file mode 100644 index faf00903..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33012-Q_SIGNAL_SLOT.cpp +++ /dev/null @@ -1,23 +0,0 @@ -bool AkonadiServer::init() -{ - connect(watcher, SIGNAL(serviceOwnerChanged(QString,QString,QString)), - this, SLOT(serviceOwnerChanged(QString,QString,QString))); - return true; -} - -connect(&mapper, SIGNAL(mapped(Q1&)), this, SLOT(onSomeEvent(const Q2&))); - -connect(&mapper, - SIGNAL(mapped(Q1&)), - this, - SLOT(onSomeEvent(const Q2&))); - -connect(&mapper, - SIGNAL(emitted(Q1*)), - this, - SLOT(accept(const Q2*))); - -connect(&mapper, - SIGNAL(emitted(X<int>)), - this, - SLOT(accept(X<int>))); |