~ubuntu-branches/ubuntu/vivid/muon/vivid-proposed

« back to all changes in this revision

Viewing changes to libmuon/resources/AbstractResourcesBackend.cpp

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2015-03-24 07:36:31 UTC
  • mto: This revision was merged to the branch mainline in revision 86.
  • Revision ID: package-import@ubuntu.com-20150324073631-7nmay5episnfkdlt
Tags: upstream-5.2.2
ImportĀ upstreamĀ versionĀ 5.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
void AbstractResourcesBackend::setMetaData(const QString&)
38
38
{}
 
39
 
 
40
void AbstractResourcesBackend::setName(const QString& name)
 
41
{
 
42
    m_name = name;
 
43
}
 
44
 
 
45
QString AbstractResourcesBackend::name() const
 
46
{
 
47
    return m_name;
 
48
}