Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
KDE PIM Add-ons
Commits
75e0acb4
Commit
75e0acb4
authored
Oct 20, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We don't need to remove these margins
parent
a2bc34a3
Pipeline
#38153
passed with stage
in 54 minutes and 30 seconds
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
0 additions
and
8 deletions
+0
-8
plugins/messageviewerconfigureplugins/dkim-verify/autotests/dkimadvancedwidgettest.cpp
...eplugins/dkim-verify/autotests/dkimadvancedwidgettest.cpp
+0
-1
plugins/messageviewerconfigureplugins/dkim-verify/autotests/dkimgeneralwidgettest.cpp
...replugins/dkim-verify/autotests/dkimgeneralwidgettest.cpp
+0
-1
plugins/messageviewerconfigureplugins/dkim-verify/autotests/dkimkeyrecordwidgettest.cpp
...plugins/dkim-verify/autotests/dkimkeyrecordwidgettest.cpp
+0
-1
plugins/messageviewerconfigureplugins/dkim-verify/autotests/dkimpolicywidgettest.cpp
...ureplugins/dkim-verify/autotests/dkimpolicywidgettest.cpp
+0
-1
plugins/messageviewerconfigureplugins/dkim-verify/dkimadvancedwidget.cpp
...viewerconfigureplugins/dkim-verify/dkimadvancedwidget.cpp
+0
-1
plugins/messageviewerconfigureplugins/dkim-verify/dkimgeneralwidget.cpp
...eviewerconfigureplugins/dkim-verify/dkimgeneralwidget.cpp
+0
-1
plugins/messageviewerconfigureplugins/dkim-verify/dkimkeyrecordwidget.cpp
...iewerconfigureplugins/dkim-verify/dkimkeyrecordwidget.cpp
+0
-1
plugins/messageviewerconfigureplugins/dkim-verify/dkimpolicywidget.cpp
...geviewerconfigureplugins/dkim-verify/dkimpolicywidget.cpp
+0
-1
No files found.
plugins/messageviewerconfigureplugins/dkim-verify/autotests/dkimadvancedwidgettest.cpp
View file @
75e0acb4
...
...
@@ -22,7 +22,6 @@ void DKIMAdvancedWidgetTest::shouldHaveDefaultValues()
DKIMAdvancedWidget
w
;
QFormLayout
*
mainLayout
=
w
.
findChild
<
QFormLayout
*>
(
QStringLiteral
(
"mainLayout"
));
QVERIFY
(
mainLayout
);
QCOMPARE
(
mainLayout
->
contentsMargins
(),
QMargins
(
0
,
0
,
0
,
0
));
QCheckBox
*
mCheckDKIMWhenOnlyTesting
=
w
.
findChild
<
QCheckBox
*>
(
QStringLiteral
(
"mCheckDKIMWhenOnlyTesting"
));
QVERIFY
(
mCheckDKIMWhenOnlyTesting
);
...
...
plugins/messageviewerconfigureplugins/dkim-verify/autotests/dkimgeneralwidgettest.cpp
View file @
75e0acb4
...
...
@@ -21,7 +21,6 @@ void DKIMGeneralWidgetTest::shouldHaveDefaultValues()
DKIMGeneralWidget
w
;
QVBoxLayout
*
mainLayout
=
w
.
findChild
<
QVBoxLayout
*>
(
QStringLiteral
(
"mainLayout"
));
QVERIFY
(
mainLayout
);
QCOMPARE
(
mainLayout
->
contentsMargins
(),
QMargins
(
0
,
0
,
0
,
0
));
QCheckBox
*
mEnableDkimSupport
=
w
.
findChild
<
QCheckBox
*>
(
QStringLiteral
(
"enableDkimSupport"
));
QVERIFY
(
mEnableDkimSupport
);
...
...
plugins/messageviewerconfigureplugins/dkim-verify/autotests/dkimkeyrecordwidgettest.cpp
View file @
75e0acb4
...
...
@@ -21,7 +21,6 @@ void DKIMKeyRecordWidgetTest::shouldHaveDefaultValues()
DKIMKeyRecordWidget
w
;
QHBoxLayout
*
mainLayout
=
w
.
findChild
<
QHBoxLayout
*>
(
QStringLiteral
(
"mainLayout"
));
QVERIFY
(
mainLayout
);
QCOMPARE
(
mainLayout
->
contentsMargins
(),
QMargins
(
0
,
0
,
0
,
0
));
MessageViewer
::
DKIMManagerKeyWidget
*
mManagerKeyWidget
=
w
.
findChild
<
MessageViewer
::
DKIMManagerKeyWidget
*>
(
QStringLiteral
(
"mManagerKeyWidget"
));
QVERIFY
(
mManagerKeyWidget
);
...
...
plugins/messageviewerconfigureplugins/dkim-verify/autotests/dkimpolicywidgettest.cpp
View file @
75e0acb4
...
...
@@ -25,7 +25,6 @@ void DKIMPolicyWidgetTest::shouldHaveDefaultValues()
DKIMPolicyWidget
w
;
QVBoxLayout
*
mainLayout
=
w
.
findChild
<
QVBoxLayout
*>
(
QStringLiteral
(
"mainLayout"
));
QVERIFY
(
mainLayout
);
QCOMPARE
(
mainLayout
->
contentsMargins
(),
QMargins
(
0
,
0
,
0
,
0
));
QCheckBox
*
mVerifyIfEmailMustBeSigned
=
w
.
findChild
<
QCheckBox
*>
(
QStringLiteral
(
"mVerifyIfEmailMustBeSigned"
));
QVERIFY
(
mVerifyIfEmailMustBeSigned
);
...
...
plugins/messageviewerconfigureplugins/dkim-verify/dkimadvancedwidget.cpp
View file @
75e0acb4
...
...
@@ -22,7 +22,6 @@ DKIMAdvancedWidget::DKIMAdvancedWidget(QWidget *parent)
{
QFormLayout
*
mainLayout
=
new
QFormLayout
(
this
);
mainLayout
->
setObjectName
(
QStringLiteral
(
"mainLayout"
));
mainLayout
->
setContentsMargins
({});
mCheckDKIMWhenOnlyTesting
=
new
QCheckBox
(
i18n
(
"Still verify the signature, if a domain is only testing DKIM"
),
this
);
mCheckDKIMWhenOnlyTesting
->
setObjectName
(
QStringLiteral
(
"mCheckDKIMWhenOnlyTesting"
));
...
...
plugins/messageviewerconfigureplugins/dkim-verify/dkimgeneralwidget.cpp
View file @
75e0acb4
...
...
@@ -19,7 +19,6 @@ DKIMGeneralWidget::DKIMGeneralWidget(QWidget *parent)
{
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
(
this
);
mainLayout
->
setObjectName
(
QStringLiteral
(
"mainLayout"
));
mainLayout
->
setContentsMargins
({});
mEnableDkimSupport
=
new
QCheckBox
(
i18n
(
"Enable DKIM Support"
));
mEnableDkimSupport
->
setObjectName
(
QStringLiteral
(
"enableDkimSupport"
));
...
...
plugins/messageviewerconfigureplugins/dkim-verify/dkimkeyrecordwidget.cpp
View file @
75e0acb4
...
...
@@ -20,7 +20,6 @@ DKIMKeyRecordWidget::DKIMKeyRecordWidget(QWidget *parent)
{
QHBoxLayout
*
mainLayout
=
new
QHBoxLayout
(
this
);
mainLayout
->
setObjectName
(
QStringLiteral
(
"mainLayout"
));
mainLayout
->
setContentsMargins
({});
mManagerKeyWidget
->
setObjectName
(
QStringLiteral
(
"mManagerKeyWidget"
));
mainLayout
->
addWidget
(
mManagerKeyWidget
);
...
...
plugins/messageviewerconfigureplugins/dkim-verify/dkimpolicywidget.cpp
View file @
75e0acb4
...
...
@@ -22,7 +22,6 @@ DKIMPolicyWidget::DKIMPolicyWidget(QWidget *parent)
{
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
(
this
);
mainLayout
->
setObjectName
(
QStringLiteral
(
"mainLayout"
));
mainLayout
->
setContentsMargins
({});
mVerifyIfEmailMustBeSigned
=
new
QCheckBox
(
i18n
(
"Check if e-mail should be signed"
),
this
);
mVerifyIfEmailMustBeSigned
->
setObjectName
(
QStringLiteral
(
"mVerifyIfEmailMustBeSigned"
));
...
...
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