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
libgravatar
Commits
f4c7eb16
Commit
f4c7eb16
authored
Mar 31, 2021
by
Laurent Montel
😁
Browse files
GIt_SILENT: using pragma once directly
parent
1a491de6
Pipeline
#56077
skipped
Changes
16
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
autotests/gravatarcachetest.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARCACHETEST_H
#define GRAVATARCACHETEST_H
#pragma once
#include <QObject>
...
...
@@ -24,4 +23,3 @@ private Q_SLOTS:
void
testMissing_data
();
};
#endif // GRAVATARCACHETEST_H
autotests/gravatarconfiguresettingsdialogtest.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARCONFIGURESETTINGSDIALOGTEST_H
#define GRAVATARCONFIGURESETTINGSDIALOGTEST_H
#pragma once
#include <QObject>
...
...
@@ -20,4 +19,3 @@ private Q_SLOTS:
void
shouldHaveDefaultValue
();
};
#endif // GRAVATARCONFIGURESETTINGSDIALOGTEST_H
autotests/gravatarconfiguresettingswidgettest.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARCONFIGURESETTINGSWIDGETTEST_H
#define GRAVATARCONFIGURESETTINGSWIDGETTEST_H
#pragma once
#include <QObject>
...
...
@@ -19,4 +18,3 @@ private Q_SLOTS:
void
shouldHaveDefaultValues
();
};
#endif // GRAVATARCONFIGURESETTINGSWIDGETTEST_H
autotests/gravatarconfigwidgettest.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARCONFIGWIDGETTEST_H
#define GRAVATARCONFIGWIDGETTEST_H
#pragma once
#include <QObject>
...
...
@@ -22,4 +21,3 @@ private Q_SLOTS:
void
shoulEmitConfigChangedSignal
();
};
#endif // GRAVATARCONFIGWIDGETTEST_H
autotests/gravatardownloadpixmapdialogtest.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARDOWNLOADPIXMAPDIALOGTEST_H
#define GRAVATARDOWNLOADPIXMAPDIALOGTEST_H
#pragma once
#include <QObject>
...
...
@@ -21,4 +20,3 @@ private Q_SLOTS:
void
initTestCase
();
};
#endif // GRAVATARDOWNLOADPIXMAPDIALOGTEST_H
autotests/gravatardownloadpixmapwidgettest.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARDOWNLOADPIXMAPWIDGETTEST_H
#define GRAVATARDOWNLOADPIXMAPWIDGETTEST_H
#pragma once
#include <QObject>
...
...
@@ -20,4 +19,3 @@ private Q_SLOTS:
void
shouldChangeButtonEnableState
();
};
#endif // GRAVATARDOWNLOADPIXMAPWIDGETTEST_H
autotests/gravatarresolvurljobtest.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARRESOLVURLJOBTEST_H
#define GRAVATARRESOLVURLJOBTEST_H
#pragma once
#include <QObject>
...
...
@@ -31,4 +30,3 @@ private Q_SLOTS:
void
shouldUseHttps
();
};
#endif // GRAVATARRESOLVURLJOBTEST_H
src/gravatar_private_export.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARPRIVATE_EXPORT_H
#define GRAVATARPRIVATE_EXPORT_H
#pragma once
#include "gravatar_export.h"
...
...
@@ -18,4 +17,3 @@
#define GRAVATAR_TESTS_EXPORT
#endif
#endif
src/job/gravatarresolvurljob.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARRESOLVURLJOB_H
#define GRAVATARRESOLVURLJOB_H
#pragma once
#include "gravatar_export.h"
#include <QNetworkReply>
...
...
@@ -68,4 +67,3 @@ private:
};
}
#endif // GRAVATARRESOLVURLJOB_H
src/misc/gravatarcache.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARCACHE_H
#define GRAVATARCACHE_H
#pragma once
#include "gravatar_export.h"
...
...
@@ -42,4 +41,3 @@ private:
};
}
#endif // GRAVATARCACHE_H
src/misc/hash.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATAR_HASH_H
#define GRAVATAR_HASH_H
#pragma once
#include "gravatar_private_export.h"
...
...
@@ -66,4 +65,3 @@ private:
};
}
#endif // GRAVATAR_HASH_H
src/widgets/gravatarconfiguresettingsdialog.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARCONFIGURESETTINGSDIALOG_H
#define GRAVATARCONFIGURESETTINGSDIALOG_H
#pragma once
#include "gravatar_export.h"
#include <QDialog>
...
...
@@ -29,4 +28,3 @@ private:
};
}
#endif // GRAVATARCONFIGURESETTINGSDIALOG_H
src/widgets/gravatarconfiguresettingswidget.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARCONFIGURESETTINGSWIDGET_H
#define GRAVATARCONFIGURESETTINGSWIDGET_H
#pragma once
#include "gravatar_export.h"
#include <QWidget>
...
...
@@ -35,4 +34,3 @@ private:
};
}
#endif // GRAVATARCONFIGURESETTINGSWIDGET_H
src/widgets/gravatarconfigwidget.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARCONFIGWIDGET_H
#define GRAVATARCONFIGWIDGET_H
#pragma once
#include "gravatar_export.h"
#include <QWidget>
...
...
@@ -36,4 +35,3 @@ private:
};
}
#endif // GRAVATARCONFIGWIDGET_H
src/widgets/gravatardownloadpixmapdialog.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARDOWNLOADPIXMAPDIALOG_H
#define GRAVATARDOWNLOADPIXMAPDIALOG_H
#pragma once
#include "gravatar_export.h"
#include <QDialog>
...
...
@@ -30,4 +29,3 @@ private:
};
}
#endif // GRAVATARDOWNLOADPIXMAPDIALOG_H
src/widgets/gravatardownloadpixmapwidget.h
View file @
f4c7eb16
...
...
@@ -4,8 +4,7 @@
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef GRAVATARDOWNLOADPIXMAPWIDGET_H
#define GRAVATARDOWNLOADPIXMAPWIDGET_H
#pragma once
#include "gravatar_export.h"
#include <QWidget>
...
...
@@ -41,4 +40,3 @@ private:
};
}
#endif // GRAVATARDOWNLOADPIXMAPWIDGET_H
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