~ubuntu-branches/ubuntu/utopic/kde4libs/utopic

« back to all changes in this revision

Viewing changes to nepomuk/core/resource.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Kolberg
  • Date: 2012-03-03 00:25:28 UTC
  • mfrom: (1.14.15)
  • Revision ID: package-import@ubuntu.com-20120303002528-chhwyfluldkicy5k
Tags: 4:4.8.1-0ubuntu1
* New upstream release
  - Update symbol files

Show diffs side-by-side

added added

removed removed

Lines of Context:
312
312
 
313
313
void Nepomuk::Resource::addProperty( const QUrl& uri, const Variant& value )
314
314
{
315
 
    Variant v = property( uri );
316
 
    v.append( value );
317
 
    setProperty( uri, v );
 
315
    determineFinalResourceData();
 
316
    m_data->addProperty( uri, value );
318
317
}
319
318
 
320
319