~content-hub-team/content-hub/trunk

« back to all changes in this revision

Viewing changes to src/com/ubuntu/content/store.cpp

  • Committer: Tarmac
  • Author(s): Ken VanDine
  • Date: 2013-09-30 18:39:00 UTC
  • mfrom: (48.1.1 content-hub-lp1231368)
  • Revision ID: tarmac-20130930183900-61vw3dr45uph3six
Pulled back in all the changes that were reverted in rev 47.  Bug (LP: #1231368) seemed to be caused by gallery-app needing a rebuild against this version of content-hub.

Approved by PS Jenkins bot, Günter Schwann.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
{
30
30
}
31
31
 
 
32
cuc::Store::Store(const cuc::Store& rhs) : QObject(rhs.parent()), d(rhs.d)
 
33
{
 
34
}
 
35
 
 
36
cuc::Store& cuc::Store::operator=(const cuc::Store& rhs)
 
37
{
 
38
    d = rhs.d;
 
39
    return *this;
 
40
}
 
41
 
32
42
cuc::Store::~Store()
33
43
{
34
44
}