Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Akonadi Mime
Commits
7aee3569
Commit
7aee3569
authored
Mar 31, 2021
by
Laurent Montel
😁
Browse files
GIt_SILENT: using pragma once directly
parent
f50d0513
Pipeline
#56090
skipped
Changes
45
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
autotests/benchmarker/maildir/maildir.h
View file @
7aee3569
...
...
@@ -5,8 +5,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MAILDIR_H
#define MAILDIR_H
#pragma once
#include "../maketest.h"
...
...
@@ -18,4 +17,3 @@ public:
MailDir
();
};
#endif
autotests/benchmarker/maildir/maildir20percentread.h
View file @
7aee3569
...
...
@@ -5,8 +5,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MAILDIR20PERCENTREAD_H
#define MAILDIR20PERCENTREAD_H
#pragma once
#include "maildir.h"
...
...
@@ -17,4 +16,3 @@ public:
MailDir20PercentAsRead
();
void
runTest
()
override
;
};
#endif
autotests/benchmarker/maildir/maildirfetchallheaders.h
View file @
7aee3569
...
...
@@ -5,8 +5,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MAILDIRFETCHALLHEADERS_H
#define MAILDIRFETCHALLHEADERS_H
#pragma once
#include "maildir.h"
...
...
@@ -17,4 +16,3 @@ public:
MailDirFetchAllHeaders
();
void
runTest
()
override
;
};
#endif
autotests/benchmarker/maildir/maildirfetchunreadheaders.h
View file @
7aee3569
...
...
@@ -5,8 +5,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MAILDIRFETCHUNREADHEADERS_H
#define MAILDIRFETCHUNREADHEADERS_H
#pragma once
#include "maildir.h"
...
...
@@ -17,4 +16,3 @@ public:
MailDirFetchUnreadHeaders
();
void
runTest
()
override
;
};
#endif
autotests/benchmarker/maildir/maildirimport.h
View file @
7aee3569
...
...
@@ -5,8 +5,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MAILDIRIMPORT_H
#define MAILDIRIMPORT_H
#pragma once
#include "maildir.h"
...
...
@@ -17,4 +16,3 @@ public:
MailDirImport
(
const
QString
&
dir
);
void
runTest
()
override
;
};
#endif
autotests/benchmarker/maildir/maildirremovereadmessages.h
View file @
7aee3569
...
...
@@ -5,8 +5,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MAILDIRREMOVEREADMESSAGES_H
#define MAILDIRREMOVEREADMESSAGES_H
#pragma once
#include "maildir.h"
...
...
@@ -17,4 +16,3 @@ public:
MailDirRemoveReadMessages
();
void
runTest
()
override
;
};
#endif
autotests/benchmarker/maketest.h
View file @
7aee3569
...
...
@@ -5,8 +5,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MAKETEST_H
#define MAKETEST_H
#pragma once
#include <agentmanager.h>
#include <job.h>
...
...
@@ -38,4 +37,3 @@ public:
void
start
();
};
#endif
autotests/benchmarker/test.h
View file @
7aee3569
...
...
@@ -5,8 +5,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef TEST_H
#define TEST_H
#pragma once
#include "maketest.h"
...
...
@@ -20,4 +19,3 @@ public:
void
runTests
();
};
#endif
autotests/benchmarker/testmaildir.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef TESTMAILDIR_H
#define TESTMAILDIR_H
#pragma once
#include "test.h"
...
...
@@ -14,4 +13,3 @@ class TestMailDir : public Test
public:
TestMailDir
(
const
QString
&
dir
);
};
#endif
autotests/benchmarker/testvcard.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef TESTVCARD_H
#define TESTVCARD_H
#pragma once
#include "test.h"
...
...
@@ -14,4 +13,3 @@ class TestVCard : public Test
public:
TestVCard
(
const
QString
&
dir
);
};
#endif
autotests/benchmarker/vcard/vcard.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef VCARD_H
#define VCARD_H
#pragma once
#include "../maketest.h"
...
...
@@ -17,4 +16,3 @@ public:
VCard
();
};
#endif
autotests/benchmarker/vcard/vcardimport.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef VCARD_IMPORT_H
#define VCARD_IMPORT_H
#pragma once
#include "vcard.h"
...
...
@@ -17,4 +16,3 @@ public:
void
runTest
()
override
;
};
#endif
autotests/collectionjobtest.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef COLLECTIONJOBTEST_H
#define COLLECTIONJOBTEST_H
#pragma once
#include <QObject>
...
...
@@ -42,4 +41,3 @@ private Q_SLOTS:
void
testReference
();
};
#endif
autotests/localfoldersrequestjobtest.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef LOCALFOLDERSREQUESTJOBTEST_H
#define LOCALFOLDERSREQUESTJOBTEST_H
#pragma once
#include <QObject>
...
...
@@ -22,4 +21,3 @@ private Q_SLOTS:
void
testMixedRequest
();
};
#endif
autotests/localfolderstest.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef LOCALFOLDERSTEST_H
#define LOCALFOLDERSTEST_H
#pragma once
#include <QMap>
#include <QObject>
...
...
@@ -46,4 +45,3 @@ private:
};
}
#endif
autotests/mailserializerplugintest.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MAILSERIALIZERPLUGINTEST_H
#define MAILSERIALIZERPLUGINTEST_H
#pragma once
#include <QObject>
...
...
@@ -17,4 +16,3 @@ private Q_SLOTS:
void
testMessageIntegrity
();
};
#endif
autotests/mailserializertest.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MAILSERIALIZERTEST_H
#define MAILSERIALIZERTEST_H
#pragma once
#include <QObject>
...
...
@@ -24,4 +23,3 @@ private Q_SLOTS:
void
testMultiDeserialize
();
};
#endif
autotests/messagetests/messagetest.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef MESSAGETEST_TEST_H
#define MESSAGETEST_TEST_H
#pragma once
#include <QObject>
#include <kmime/kmime_message.h>
...
...
@@ -20,4 +19,3 @@ private:
KMime
::
Message
::
Ptr
readAndParseMail
(
const
QString
&
mailFile
)
const
;
};
#endif
autotests/newmailnotifierattributetest.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef NEWMAILNOTIFIERATTRIBUTETEST_H
#define NEWMAILNOTIFIERATTRIBUTETEST_H
#pragma once
#include <QObject>
...
...
@@ -23,4 +22,3 @@ private Q_SLOTS:
void
shouldHaveType
();
};
#endif // NEWMAILNOTIFIERATTRIBUTETEST_H
autotests/pop3resourceattributetest.h
View file @
7aee3569
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef POP3RESOURCEATTRIBUTETEST_H
#define POP3RESOURCEATTRIBUTETEST_H
#pragma once
#include <QObject>
...
...
@@ -22,4 +21,3 @@ private Q_SLOTS:
void
shouldCloneAttribute
();
};
#endif // POP3RESOURCEATTRIBUTETEST_H
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment