Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Akonadi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PIM
Akonadi
Commits
3af0b265
Commit
3af0b265
authored
Jan 06, 2017
by
Laurent Montel
😁
Committed by
David Faure
Feb 12, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more debug
(cherry picked from commit
b08719c5
)
parent
debd4f6b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
src/core/jobs/itemfetchjob.cpp
src/core/jobs/itemfetchjob.cpp
+12
-1
No files found.
src/core/jobs/itemfetchjob.cpp
View file @
3af0b265
...
...
@@ -89,7 +89,18 @@ public:
}
else
{
try
{
return
QString
();
//QString::fromLatin1(ProtocolHelper::entitySetToScope(mRequestedItems));
QString
itemStr
=
QStringLiteral
(
"items id: "
);
bool
firstItem
=
true
;
Q_FOREACH
(
const
Akonadi
::
Item
&
item
,
mRequestedItems
)
{
if
(
firstItem
)
{
firstItem
=
false
;
}
else
{
itemStr
+=
QStringLiteral
(
", "
);
}
itemStr
+=
QString
::
number
(
item
.
id
())
+
QStringLiteral
(
" from collection %1"
).
arg
(
item
.
parentCollection
().
id
());
}
return
itemStr
;
//return QString(); //QString::fromLatin1(ProtocolHelper::entitySetToScope(mRequestedItems));
}
catch
(
const
Exception
&
e
)
{
return
QString
::
fromUtf8
(
e
.
what
());
}
...
...
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