<br>I am attempting to fix bug <a href="http://trac.osgeo.org/qgis/ticket/924">#924</a>. From what I understand, it appears QgsProject::removeEntry is not working correctly. The debugging statement in the code below prints out a non-null address.<br>
<br>bool QgsProject::removeEntry(QString const &scope, const QString & key)<br>{<br> removeKey_( scope, key, imp_->properties_ );<br> dirty(true);<br><br>std::cout << "removed entry... find key: " << findKey_(scope, key, imp_->properties_ ) << std::endl;<br>
<br> return ! findKey_(scope, key, imp_->properties_ );<br>} // QgsProject::removeEntry<br><br>I attempted to compile the unit test, but didn't find any instructions other than "run qmake, run make". I got a zillion errors about not finding header files.<br>
<br>What do I need to do to properly compile the unit test?<br>Thanks!<br>Steven<br><br>