Fixed: #1373 the Mission Compiler plugin build for Linux and pre-4.7 Qt.
This commit is contained in:
parent
57c18d7e95
commit
88dbd944e4
2 changed files with 3 additions and 2 deletions
|
@ -379,7 +379,7 @@ bool MissionCompilerMainWindow::parsePrimForMissions(NLLIGO::IPrimitive const *p
|
||||||
{
|
{
|
||||||
std::string value;
|
std::string value;
|
||||||
// if the node is a mission parse it
|
// if the node is a mission parse it
|
||||||
if (prim->getPropertyByName("class",value) && !stricmp(value.c_str(),"mission") )
|
if (prim->getPropertyByName("class",value) && !NLMISC::stricmp(value.c_str(),"mission") )
|
||||||
{
|
{
|
||||||
std::string name;
|
std::string name;
|
||||||
prim->getPropertyByName("name",name);
|
prim->getPropertyByName("name",name);
|
||||||
|
|
|
@ -234,9 +234,10 @@
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLineEdit" name="filterEdit">
|
<widget class="QLineEdit" name="filterEdit">
|
||||||
|
<!-- Removed due to incompatibility with Qt 4.6 and uic still adding it to the source.
|
||||||
<property name="placeholderText">
|
<property name="placeholderText">
|
||||||
<string>type filter here</string>
|
<string>type filter here</string>
|
||||||
</property>
|
</property> -->
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
|
Loading…
Reference in a new issue