PPCSymbolDB: Don't show any messages in the status bar
These don't really help anybody. We don't even have a status bar in MainNoGUI -- status bar text should be controlled by the UI, not the core code!
This commit is contained in:
parent
4a16211bae
commit
3bad4bcfdb
|
@ -279,9 +279,6 @@ bool PPCSymbolDB::SaveMap(const std::string& filename, bool WithCodes) const
|
||||||
mapFile.c_str()).c_str(), "Confirm", wxYES_NO)) return false;
|
mapFile.c_str()).c_str(), "Confirm", wxYES_NO)) return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (WithCodes)
|
|
||||||
Host_UpdateStatusBar("Saving code, please stand by ...");
|
|
||||||
|
|
||||||
// Make a file
|
// Make a file
|
||||||
File::IOFile f(mapFile, "w");
|
File::IOFile f(mapFile, "w");
|
||||||
if (!f)
|
if (!f)
|
||||||
|
@ -342,8 +339,6 @@ bool PPCSymbolDB::SaveMap(const std::string& filename, bool WithCodes) const
|
||||||
fprintf(f.GetHandle(), "\n");
|
fprintf(f.GetHandle(), "\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// ---------------
|
|
||||||
Host_UpdateStatusBar(StringFromFormat("Saved %s", mapFile.c_str()).c_str());
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue