<br>I am attempting to fix bug <a href="http://trac.osgeo.org/qgis/ticket/924">#924</a>.&nbsp; From what I understand, it appears QgsProject::removeEntry is not working correctly.&nbsp; The debugging statement in the code below prints out a non-null address.<br>
<br>bool QgsProject::removeEntry(QString const &amp;scope, const QString &amp; key)<br>{<br>&nbsp;&nbsp;&nbsp; removeKey_( scope, key, imp_-&gt;properties_ );<br>&nbsp;&nbsp;&nbsp; dirty(true);<br><br>std::cout &lt;&lt; &quot;removed entry... find key: &quot; &lt;&lt; findKey_(scope, key, imp_-&gt;properties_ ) &lt;&lt; std::endl;<br>
<br>&nbsp;&nbsp;&nbsp; return ! findKey_(scope, key, imp_-&gt;properties_ );<br>} // QgsProject::removeEntry<br><br>I attempted to compile the unit test, but didn&#39;t find any instructions other than &quot;run qmake, run make&quot;.&nbsp; 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>