diff options
author | Orcan Ogetbil <oget.fedora@gmail.com> | 2010-12-08 00:22:51 +0000 |
---|---|---|
committer | Orcan Ogetbil <oget.fedora@gmail.com> | 2010-12-08 00:22:51 +0000 |
commit | f681783c513b54002aa4dfec2566f26bfc38689b (patch) | |
tree | 1aad8f37fd067cd36b2d4de1ae3b62b584914b20 /muse2/synti/fluid | |
parent | c856c3c44f488b137dd3b76f81b2d4b9c5444b73 (diff) |
Some fixes to the previous commit. Apparently I missed to filter a case.
Diffstat (limited to 'muse2/synti/fluid')
-rw-r--r-- | muse2/synti/fluid/fluidgui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/muse2/synti/fluid/fluidgui.cpp b/muse2/synti/fluid/fluidgui.cpp index 4782e741..10625999 100644 --- a/muse2/synti/fluid/fluidgui.cpp +++ b/muse2/synti/fluid/fluidgui.cpp @@ -55,7 +55,8 @@ void FLUIDGui::loadFont() QMessageBox::critical(this, tr("FLUID: open Soundfile"), s); return; } - const char* path = pathEntry->text().toLatin1(); + QByteArray ba = pathEntry->text().toLatin1(); + const char* path = ba.constData(); int len = strlen(path) + 1 + 3; unsigned char buffer[len]; int k = 0; |