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
PIM Data Exporter
Commits
77ab9619
Commit
77ab9619
authored
May 01, 2022
by
Laurent Montel
😁
Browse files
Fix compile warnings
parent
9afa8d15
Pipeline
#170458
passed with stage
in 2 minutes and 47 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
core/autotests/addressbook/exportaddressbookjobinterfacetestimpl.cpp
View file @
77ab9619
...
...
@@ -71,6 +71,10 @@ QString ExportAddressbookJobInterfaceTestImpl::createResource(const QString &res
const
QMap
<
QString
,
QVariant
>
&
settings
,
bool
synchronizeTree
)
{
Q_UNUSED
(
resources
);
Q_UNUSED
(
settings
);
Q_UNUSED
(
name
);
Q_UNUSED
(
synchronizeTree
);
Q_UNREACHABLE
();
return
{};
}
...
...
core/autotests/akregator/exportakregatorjobinterfacetestimpl.cpp
View file @
77ab9619
...
...
@@ -20,6 +20,9 @@ ExportAkregatorJobInterfaceTestImpl::~ExportAkregatorJobInterfaceTestImpl()
QString
ExportAkregatorJobInterfaceTestImpl
::
adaptNewResourceUrl
(
bool
overwriteResources
,
const
KSharedConfig
::
Ptr
&
resourceConfig
,
const
QString
&
storePath
)
{
Q_UNUSED
(
overwriteResources
);
Q_UNUSED
(
resourceConfig
);
Q_UNUSED
(
storePath
);
Q_UNREACHABLE
();
return
{};
}
...
...
@@ -29,6 +32,10 @@ QString ExportAkregatorJobInterfaceTestImpl::createResource(const QString &resou
const
QMap
<
QString
,
QVariant
>
&
settings
,
bool
synchronizeTree
)
{
Q_UNUSED
(
resources
);
Q_UNUSED
(
settings
);
Q_UNUSED
(
name
);
Q_UNUSED
(
synchronizeTree
);
Q_UNREACHABLE
();
return
{};
}
core/autotests/calendar/exportcalendarsjobinterfacetestimpl.cpp
View file @
77ab9619
...
...
@@ -95,6 +95,10 @@ QString ExportCalendarsJobInterfaceTestImpl::createResource(const QString &resou
const
QMap
<
QString
,
QVariant
>
&
settings
,
bool
synchronizeTree
)
{
Q_UNUSED
(
resources
);
Q_UNUSED
(
settings
);
Q_UNUSED
(
name
);
Q_UNUSED
(
synchronizeTree
);
Q_UNREACHABLE
();
return
{};
}
core/autotests/mail/exportmailjobinterfacetestimpl.cpp
View file @
77ab9619
...
...
@@ -119,6 +119,10 @@ QString ExportMailJobInterfaceTestImpl::adaptNewResourceUrl(bool overwriteResour
QString
ExportMailJobInterfaceTestImpl
::
createResource
(
const
QString
&
resources
,
const
QString
&
name
,
const
QMap
<
QString
,
QVariant
>
&
settings
,
bool
synchronizeTree
)
{
Q_UNUSED
(
resources
);
Q_UNUSED
(
settings
);
Q_UNUSED
(
name
);
Q_UNUSED
(
synchronizeTree
);
Q_UNREACHABLE
();
return
{};
}
...
...
core/autotests/mail/importmailjobinterfacetestimpl.cpp
View file @
77ab9619
...
...
@@ -133,6 +133,10 @@ QString ImportMailJobInterfaceTestImpl::uniqueIdentityName(const QString &name)
void
ImportMailJobInterfaceTestImpl
::
importCustomMailTransport
(
const
QString
&
identifierValue
,
const
KConfigGroup
&
group
,
int
defaultTransport
,
int
transportId
)
{
Q_UNUSED
(
identifierValue
);
Q_UNUSED
(
group
);
Q_UNUSED
(
defaultTransport
);
Q_UNUSED
(
transportId
);
qDebug
()
<<
"importCustomMailTransport(const QString &identifierValue, const KConfigGroup &group, int defaultTransport, int transportId) not implemented yet"
;
}
...
...
core/autotests/notes/exportnotesjobinterfacetestimpl.cpp
View file @
77ab9619
...
...
@@ -66,6 +66,10 @@ QString ExportNotesJobInterfaceTestImpl::adaptNewResourceUrl(bool overwriteResou
QString
ExportNotesJobInterfaceTestImpl
::
createResource
(
const
QString
&
resources
,
const
QString
&
name
,
const
QMap
<
QString
,
QVariant
>
&
settings
,
bool
synchronizeTree
)
{
Q_UNUSED
(
resources
);
Q_UNUSED
(
settings
);
Q_UNUSED
(
name
);
Q_UNUSED
(
synchronizeTree
);
Q_UNREACHABLE
();
return
{};
}
Write
Preview
Supports
Markdown
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