Skip to content
This repository has been archived by the owner on Mar 27, 2020. It is now read-only.

Commit

Permalink
Version bump and virtual dtor.
Browse files Browse the repository at this point in the history
  • Loading branch information
Skrylar committed Feb 2, 2019
1 parent 763b946 commit be5dafa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SLUG = SkJack

# Must follow the format in the Versioning section of
# https://vcvrack.com/manual/PluginDevelopmentTutorial.html
VERSION = 0.6.4
VERSION = 0.6.5

# FLAGS will be passed to both the C and C++ compiler
FLAGS += $(pkg-config --cflags jack)
Expand Down
3 changes: 3 additions & 0 deletions src/jack-audio-module-widget.cc
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ JackAudioModuleWidget::JackAudioModuleWidget(JackAudioModule *module) : ModuleWi
}
}

JackAudioModuleWidget::~JackAudioModuleWidget() {
}

json_t* JackAudioModuleWidget::toJson() {
auto map = ModuleWidget::toJson();
auto port_names = json_array();
Expand Down
1 change: 1 addition & 0 deletions src/jack-audio-module-widget.hh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ struct JackAudioModuleWidget : ModuleWidget {
TextField* port_names[8];

JackAudioModuleWidget(JackAudioModule *module);
virtual ~JackAudioModuleWidget();

/** \brief Hook to do something when a text widget reports a port has been named. */
void on_port_renamed(int port, const std::string& name);
Expand Down

0 comments on commit be5dafa

Please sign in to comment.