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
47afd2c0
Commit
47afd2c0
authored
Jan 06, 2017
by
Laurent Montel
😁
Committed by
David Faure
Feb 12, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Show collection id if collection is valid
(cherry picked from commit
f7c63f15
)
parent
3af0b265
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/core/jobs/itemfetchjob.cpp
src/core/jobs/itemfetchjob.cpp
+5
-1
No files found.
src/core/jobs/itemfetchjob.cpp
View file @
47afd2c0
...
...
@@ -97,7 +97,11 @@ public:
}
else
{
itemStr
+=
QStringLiteral
(
", "
);
}
itemStr
+=
QString
::
number
(
item
.
id
())
+
QStringLiteral
(
" from collection %1"
).
arg
(
item
.
parentCollection
().
id
());
itemStr
+=
QString
::
number
(
item
.
id
());
const
Akonadi
::
Collection
parentCollection
=
item
.
parentCollection
();
if
(
parentCollection
.
isValid
())
{
itemStr
+=
QStringLiteral
(
" from collection %1"
).
arg
(
parentCollection
.
id
());
}
}
return
itemStr
;
//return QString(); //QString::fromLatin1(ProtocolHelper::entitySetToScope(mRequestedItems));
...
...
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