Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/kurasu/Surge
Browse files Browse the repository at this point in the history
  • Loading branch information
kurasu committed Dec 18, 2018
2 parents 719b75d + 3cd6775 commit 114de69
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/common/gui/PopupEditorDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,14 @@ void spawn_miniedit_text(char* c, int maxchars)
strncpy(c, me.textdata, maxchars);
}
}
#endif
#elif __linux__

#include <stdio.h>

void spawn_miniedit_text(char* c, int maxchars)
{
// FIXME: Implement text edit popup on Linux.
fprintf(stderr, "%s: text edit popup is not implemented.\n", __func__);
}

#endif
4 changes: 4 additions & 0 deletions src/vst2/Vst2PluginInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@

using namespace std;

#if __linux__
namespace VSTGUI { void* soHandle = nullptr; }
#endif

//-------------------------------------------------------------------------------------------------------

AudioEffect* createEffectInstance(audioMasterCallback audioMaster)
Expand Down

0 comments on commit 114de69

Please sign in to comment.