diff options
author | David Robillard <d@drobilla.net> | 2020-11-29 11:25:44 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-29 11:25:44 +0100 |
commit | d4d86ae54ebe73ad481f84145002ed8fb425d34f (patch) | |
tree | cd4af17382eda4cf243fba8ce3f00c717a4c467c /src | |
parent | 42309f6c48066c540c51ddc18b5f7a635554b3cc (diff) | |
download | patchage-d4d86ae54ebe73ad481f84145002ed8fb425d34f.tar.gz patchage-d4d86ae54ebe73ad481f84145002ed8fb425d34f.tar.bz2 patchage-d4d86ae54ebe73ad481f84145002ed8fb425d34f.zip |
Fix build on MacOS
Diffstat (limited to 'src')
-rw-r--r-- | src/Patchage.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp index b5123b6..641714a 100644 --- a/src/Patchage.cpp +++ b/src/Patchage.cpp @@ -311,7 +311,8 @@ Patchage::Patchage(int argc, char** argv) _about_win->set_logo(Gdk::Pixbuf::create_from_file( bundle_location() + "/Resources/Patchage.icns")); } catch (const Glib::Exception& e) { - _log.error(fmt::format("Failed to set logo ({})", e.what())); + _log.error( + fmt::format("Failed to set logo ({})", std::string(e.what()))); } #endif |