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
libksieve
Commits
ffca0245
Commit
ffca0245
authored
Feb 12, 2021
by
Laurent Montel
😁
Browse files
Add missing override
parent
7fa41aab
Pipeline
#50659
passed with stage
in 20 minutes and 49 seconds
Changes
15
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
kioslave/src/autotests/regexptest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class RegexpTest : public QObject
Q_OBJECT
public:
explicit
RegexpTest
(
QObject
*
parent
=
nullptr
);
~
RegexpTest
()
=
default
;
~
RegexpTest
()
override
=
default
;
private
Q_SLOTS
:
void
compareRegexp_data
();
void
compareRegexp
();
...
...
src/ksieveui/autocreatescripts/autotests/regexpeditorlineedittest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class RegexpEditorLineEditTest : public QObject
Q_OBJECT
public:
explicit
RegexpEditorLineEditTest
(
QObject
*
parent
=
nullptr
);
~
RegexpEditorLineEditTest
()
=
default
;
~
RegexpEditorLineEditTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldHaveDefaultValue
();
void
shouldChangeValue
();
...
...
src/ksieveui/autocreatescripts/autotests/sievedatespinboxtest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class SieveDateSpinBoxTest : public QObject
Q_OBJECT
public:
explicit
SieveDateSpinBoxTest
(
QObject
*
parent
=
nullptr
);
~
SieveDateSpinBoxTest
()
=
default
;
~
SieveDateSpinBoxTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldHaveDefaultValue
();
void
shouldAssignValue_data
();
...
...
src/ksieveui/autocreatescripts/autotests/sieveeditorgraphicalmodewidgettest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class SieveEditorGraphicalModeWidgetTest : public QObject
Q_OBJECT
public:
explicit
SieveEditorGraphicalModeWidgetTest
(
QObject
*
parent
=
nullptr
);
~
SieveEditorGraphicalModeWidgetTest
()
=
default
;
~
SieveEditorGraphicalModeWidgetTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldLoadScripts
();
void
shouldLoadScripts_data
();
...
...
src/ksieveui/autocreatescripts/autotests/sievepreviewgeneratedcodewidgettest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class SievePreviewGeneratedCodeWidgetTest : public QObject
Q_OBJECT
public:
explicit
SievePreviewGeneratedCodeWidgetTest
(
QObject
*
parent
=
nullptr
);
~
SievePreviewGeneratedCodeWidgetTest
()
=
default
;
~
SievePreviewGeneratedCodeWidgetTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldHaveDefaultValues
();
};
...
...
src/ksieveui/autocreatescripts/autotests/sievescriptlistboxtest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class SieveScriptListBoxTest : public QObject
Q_OBJECT
public:
explicit
SieveScriptListBoxTest
(
QObject
*
parent
=
nullptr
);
~
SieveScriptListBoxTest
()
=
default
;
~
SieveScriptListBoxTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldHaveDefaultValues
();
};
...
...
src/ksieveui/editor/autotests/sieveinfodialogtest.h
View file @
ffca0245
...
...
@@ -15,7 +15,7 @@ class SieveInfoDialogTest : public QObject
Q_OBJECT
public:
explicit
SieveInfoDialogTest
(
QObject
*
parent
=
nullptr
);
~
SieveInfoDialogTest
()
=
default
;
~
SieveInfoDialogTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldHaveDefaultValues
();
};
...
...
src/ksieveui/scriptsparsing/autotests/xmlprintingscriptbuildertest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class XMLPrintingScriptBuilderTest : public QObject
Q_OBJECT
public:
explicit
XMLPrintingScriptBuilderTest
(
QObject
*
parent
=
nullptr
);
~
XMLPrintingScriptBuilderTest
()
=
default
;
~
XMLPrintingScriptBuilderTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldCreateXml_data
();
void
shouldCreateXml
();
...
...
src/ksieveui/sieveimapinstance/autotests/sieveimapinstanceinterfacemanagertest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class SieveImapInstanceInterfaceManagerTest : public QObject
Q_OBJECT
public:
explicit
SieveImapInstanceInterfaceManagerTest
(
QObject
*
parent
=
nullptr
);
~
SieveImapInstanceInterfaceManagerTest
()
=
default
;
~
SieveImapInstanceInterfaceManagerTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldHaveDefaultValue
();
void
shouldAssignSieveImapInstanceInterface
();
...
...
src/ksieveui/sieveimapinstance/autotests/sieveimapinstancetest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class SieveImapInstanceTest : public QObject
Q_OBJECT
public:
explicit
SieveImapInstanceTest
(
QObject
*
parent
=
nullptr
);
~
SieveImapInstanceTest
()
=
default
;
~
SieveImapInstanceTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldHaveDefaultValue
();
void
shouldAssignValues
();
...
...
src/ksieveui/util/autotests/findaccountinfojobtest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class FindAccountInfoJobTest : public QObject
Q_OBJECT
public:
explicit
FindAccountInfoJobTest
(
QObject
*
parent
=
nullptr
);
~
FindAccountInfoJobTest
()
=
default
;
~
FindAccountInfoJobTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldReturnEmptyInfo
();
void
shouldAssignValue_data
();
...
...
src/ksieveui/util/autotests/regexpconvertertest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class RegExpConverterTest : public QObject
Q_OBJECT
public:
explicit
RegExpConverterTest
(
QObject
*
parent
=
nullptr
);
~
RegExpConverterTest
()
=
default
;
~
RegExpConverterTest
()
override
=
default
;
private
Q_SLOTS
:
void
convertRegExp_data
();
void
convertRegExp
();
...
...
src/ksieveui/vacation/autotests/vacationmailactionwidgettest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class VacationMailActionWidgetTest : public QObject
Q_OBJECT
public:
explicit
VacationMailActionWidgetTest
(
QObject
*
parent
=
nullptr
);
~
VacationMailActionWidgetTest
()
=
default
;
~
VacationMailActionWidgetTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldHaveDefaultValue
();
void
shouldSwitchComponents
();
...
...
src/ksieveui/vacation/vacationmaillineedit.h
View file @
ffca0245
...
...
@@ -16,7 +16,7 @@ class KSIEVEUI_TESTS_EXPORT VacationMailLineEdit : public QLineEdit
Q_OBJECT
public:
explicit
VacationMailLineEdit
(
QWidget
*
parent
=
nullptr
);
~
VacationMailLineEdit
()
=
default
;
~
VacationMailLineEdit
()
override
=
default
;
void
setInvalidEmail
(
bool
state
);
};
...
...
src/ksieveui/widgets/autotests/includefilelineedittest.h
View file @
ffca0245
...
...
@@ -14,7 +14,7 @@ class IncludeFileLineEditTest : public QObject
Q_OBJECT
public:
explicit
IncludeFileLineEditTest
(
QObject
*
parent
=
nullptr
);
~
IncludeFileLineEditTest
()
=
default
;
~
IncludeFileLineEditTest
()
override
=
default
;
private
Q_SLOTS
:
void
shouldHaveDefaultValue
();
};
...
...
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