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
fd4b9897
Commit
fd4b9897
authored
Aug 07, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Coding style
parent
10592578
Pipeline
#29979
failed with stage
in 102 minutes and 9 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
14 deletions
+7
-14
kaddressbook/importexportplugins/windows-contacts/windowscontactimportexportplugin.h
...ugins/windows-contacts/windowscontactimportexportplugin.h
+1
-2
kaddressbook/importexportplugins/windows-contacts/windowscontactimportexportplugininterface.cpp
...ws-contacts/windowscontactimportexportplugininterface.cpp
+1
-4
sieveeditor/emaillineedit/emaillineedit.h
sieveeditor/emaillineedit/emaillineedit.h
+1
-2
sieveeditor/imapfoldercompletion/selectimapfolderwidget.cpp
sieveeditor/imapfoldercompletion/selectimapfolderwidget.cpp
+3
-3
sieveeditor/regexeditorlineedit/autotests/regexpeditorlineedittest.cpp
...egexeditorlineedit/autotests/regexpeditorlineedittest.cpp
+0
-1
sieveeditor/regexeditorlineedit/regexpeditorlineedit.h
sieveeditor/regexeditorlineedit/regexpeditorlineedit.h
+1
-2
No files found.
kaddressbook/importexportplugins/windows-contacts/windowscontactimportexportplugin.h
View file @
fd4b9897
...
...
@@ -25,8 +25,7 @@ class WindowsContactImportExportPlugin : public KAddressBookImportExport::KAddre
{
Q_OBJECT
public:
explicit
WindowsContactImportExportPlugin
(
QObject
*
parent
=
nullptr
,
const
QList
<
QVariant
>
&
=
{
explicit
WindowsContactImportExportPlugin
(
QObject
*
parent
=
nullptr
,
const
QList
<
QVariant
>
&
=
{
});
~
WindowsContactImportExportPlugin
()
override
;
...
...
kaddressbook/importexportplugins/windows-contacts/windowscontactimportexportplugininterface.cpp
View file @
fd4b9897
...
...
@@ -75,7 +75,6 @@ void WindowsContactImportExportPluginInterface::slotImportWindowsContact()
Q_EMIT
emitPluginActivated
(
this
);
}
void
WindowsContactImportExportPluginInterface
::
exec
()
{
switch
(
mImportExportAction
)
{
...
...
@@ -85,7 +84,7 @@ void WindowsContactImportExportPluginInterface::exec()
case
Export
:
exportWindowsContact
();
break
;
}
}
}
void
WindowsContactImportExportPluginInterface
::
importWindowsContact
()
...
...
@@ -128,5 +127,3 @@ void WindowsContactImportExportPluginInterface::importFile(const QUrl &url)
{
Q_UNUSED
(
url
);
}
sieveeditor/emaillineedit/emaillineedit.h
View file @
fd4b9897
...
...
@@ -29,8 +29,7 @@ class EmailLineEdit : public KSieveUi::AbstractSelectEmailLineEdit
{
Q_OBJECT
public:
explicit
EmailLineEdit
(
QWidget
*
parent
=
nullptr
,
const
QList
<
QVariant
>
&
=
{
explicit
EmailLineEdit
(
QWidget
*
parent
=
nullptr
,
const
QList
<
QVariant
>
&
=
{
});
~
EmailLineEdit
()
override
;
...
...
sieveeditor/imapfoldercompletion/selectimapfolderwidget.cpp
View file @
fd4b9897
...
...
@@ -121,9 +121,9 @@ void SelectImapFolderWidget::createFolder()
if
(
index
.
isValid
())
{
bool
ok
=
false
;
const
QString
name
=
QInputDialog
::
getText
(
this
,
i18n
(
"Create Folder"
),
i18n
(
"Folder Name:"
),
{},
{},
&
ok
);
if
(
!
ok
)
{
return
;
}
if
(
!
ok
)
{
return
;
}
if
(
!
name
.
trimmed
().
isEmpty
())
{
const
QString
currentPath
=
index
.
data
(
SelectImapLoadFoldersJob
::
PathRole
).
toString
();
if
(
name
.
contains
(
QLatin1Char
(
'/'
)))
{
...
...
sieveeditor/regexeditorlineedit/autotests/regexpeditorlineedittest.cpp
View file @
fd4b9897
...
...
@@ -37,7 +37,6 @@ void RegexpEditorLineEditTest::shouldHaveDefaultValue()
QVERIFY
(
mainLayout
);
QCOMPARE
(
mainLayout
->
contentsMargins
(),
QMargins
(
0
,
0
,
0
,
0
));
QLineEdit
*
mLineEdit
=
w
.
findChild
<
QLineEdit
*>
(
QStringLiteral
(
"lineedit"
));
QVERIFY
(
mLineEdit
);
QVERIFY
(
mLineEdit
->
text
().
isEmpty
());
...
...
sieveeditor/regexeditorlineedit/regexpeditorlineedit.h
View file @
fd4b9897
...
...
@@ -28,8 +28,7 @@ class RegexpEditorLineEdit : public KSieveUi::AbstractRegexpEditorLineEdit
{
Q_OBJECT
public:
explicit
RegexpEditorLineEdit
(
QWidget
*
parent
=
nullptr
,
const
QList
<
QVariant
>
&
=
{
explicit
RegexpEditorLineEdit
(
QWidget
*
parent
=
nullptr
,
const
QList
<
QVariant
>
&
=
{
});
~
RegexpEditorLineEdit
()
override
;
...
...
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