Browse Source

Module Parameter Editor: Don't use local allocation to store label.

tags/non-daw-v1.1.0
Jonathan Moore Liles 15 years ago
parent
commit
57937f2eb2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mixer/src/Module_Parameter_Editor.C

+ 1
- 1
mixer/src/Module_Parameter_Editor.C View File

@@ -60,7 +60,7 @@ Module_Parameter_Editor::Module_Parameter_Editor ( Module *module ) : Fl_Double_
char title[512];
snprintf( title, sizeof( title ), "%s - %s - %s", "Mixer", module->chain()->name(), lab );

label( title );
label( strdup( title ) );

{ Fl_Pack *o = main_pack = new Fl_Pack( 0, y(), w(), h() - 10 );
o->type( FL_VERTICAL );


Loading…
Cancel
Save