mirror of
https://github.com/AxioDL/amuse.git
synced 2025-12-08 13:14:58 +00:00
Windows build fixes
This commit is contained in:
@@ -655,7 +655,7 @@ void ProjectModel::importSongsData(const QString& path)
|
||||
amuse::SongConverter::SongToMIDI(song.second.m_data.get(), version, isBig);
|
||||
if (!midiData.empty())
|
||||
{
|
||||
QFileInfo fi(m_dir, SysStringToQString(song.first + _S(".mid")));
|
||||
QFileInfo fi(m_dir, SysStringToQString(song.first + _SYS_STR(".mid")));
|
||||
QFile f(fi.filePath());
|
||||
if (f.open(QFile::WriteOnly))
|
||||
{
|
||||
|
||||
@@ -45,9 +45,9 @@ public:
|
||||
EPlatformType getPlatformType() const { return EPlatformType::Qt; }
|
||||
|
||||
int run() { return 0; }
|
||||
boo::SystemStringView getUniqueName() const { return _S("amuse-gui"sv); }
|
||||
boo::SystemStringView getFriendlyName() const { return _S("Amuse"sv); }
|
||||
boo::SystemStringView getProcessName() const { return _S("amuse-gui"sv); }
|
||||
boo::SystemStringView getUniqueName() const { return _SYS_STR("amuse-gui"sv); }
|
||||
boo::SystemStringView getFriendlyName() const { return _SYS_STR("Amuse"sv); }
|
||||
boo::SystemStringView getProcessName() const { return _SYS_STR("amuse-gui"sv); }
|
||||
const std::vector<boo::SystemString>& getArgs() const { return m_args; }
|
||||
|
||||
/* Constructors/initializers for sub-objects */
|
||||
|
||||
Reference in New Issue
Block a user