diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-03 23:42:55 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 9b2f3cdbed30251bc9ea6fdd4dbe1a7931c2cdf7 (patch) | |
tree | 0b89121ddc3ac6fff10f54b22caef95cdc873e2f /audio/seq24/perfedit.patch | |
parent | b2e54385d0645eaabb6fedccd738552493734f25 (diff) |
audio/seq24: Updated for version rev136.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/seq24/perfedit.patch')
-rw-r--r-- | audio/seq24/perfedit.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/audio/seq24/perfedit.patch b/audio/seq24/perfedit.patch new file mode 100644 index 0000000000000..960e6d2bcc1b5 --- /dev/null +++ b/audio/seq24/perfedit.patch @@ -0,0 +1,29 @@ +--- seq24/trunk/src/perfedit.cpp.old 2016-01-03 23:30:55.562890265 +0700 ++++ seq24/trunk/src/perfedit.cpp 2016-01-03 23:32:24.958812214 +0700 +@@ -119,7 +119,7 @@ + /* snap */ + m_button_snap = manage( new Button()); + m_button_snap->add( *manage( new Image(Gdk::Pixbuf::create_from_xpm_data( snap_xpm )))); +- m_button_snap->signal_clicked().connect( bind<Menu *>( mem_fun( *this, &perfedit::popup_menu), m_menu_snap )); ++ m_button_snap->signal_clicked().connect( bind<void>( mem_fun( *this, &perfedit::popup_menu), m_menu_snap )); + add_tooltip( m_button_snap, "Grid snap. (Fraction of Measure Length)" ); + m_entry_snap = manage( new Entry()); + m_entry_snap->set_size_request( 40, -1 ); +@@ -152,7 +152,7 @@ + /* beats per measure */ + m_button_bpm = manage( new Button()); + m_button_bpm->add( *manage( new Image(Gdk::Pixbuf::create_from_xpm_data( down_xpm )))); +- m_button_bpm->signal_clicked().connect( bind<Menu *>( mem_fun( *this, &perfedit::popup_menu), m_menu_bpm )); ++ m_button_bpm->signal_clicked().connect( bind<void>( mem_fun( *this, &perfedit::popup_menu), m_menu_bpm )); + add_tooltip( m_button_bpm, "Time Signature. Beats per Measure" ); + m_entry_bpm = manage( new Entry()); + m_entry_bpm->set_width_chars(2); +@@ -162,7 +162,7 @@ + /* beat width */ + m_button_bw = manage( new Button()); + m_button_bw->add( *manage( new Image(Gdk::Pixbuf::create_from_xpm_data( down_xpm )))); +- m_button_bw->signal_clicked().connect( bind<Menu *>( mem_fun( *this, &perfedit::popup_menu), m_menu_bw )); ++ m_button_bw->signal_clicked().connect( bind<void>( mem_fun( *this, &perfedit::popup_menu), m_menu_bw )); + add_tooltip( m_button_bw, "Time Signature. Length of Beat" ); + m_entry_bw = manage( new Entry()); + m_entry_bw->set_width_chars(2); |