summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphTreeWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-23 22:05:51 +0200
committerDavid Robillard <d@drobilla.net>2018-09-23 22:05:51 +0200
commit407099d7a30d01799824c7d4f341e0095e752919 (patch)
treedfbfd05e00ebf98c625fb00c7bc2075077273221 /src/gui/GraphTreeWindow.cpp
parente0e437c0fd970103685db2f1d0c83a9c461ad87f (diff)
downloadingen-407099d7a30d01799824c7d4f341e0095e752919.tar.gz
ingen-407099d7a30d01799824c7d4f341e0095e752919.tar.bz2
ingen-407099d7a30d01799824c7d4f341e0095e752919.zip
WIP: Fix unused parameter warningsfix-unused-parameter-warnings
Diffstat (limited to 'src/gui/GraphTreeWindow.cpp')
-rw-r--r--src/gui/GraphTreeWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/GraphTreeWindow.cpp b/src/gui/GraphTreeWindow.cpp
index 2edf8a44..591a2b25 100644
--- a/src/gui/GraphTreeWindow.cpp
+++ b/src/gui/GraphTreeWindow.cpp
@@ -152,7 +152,7 @@ GraphTreeWindow::find_graph(Gtk::TreeModel::Children root,
/** Show the context menu for the selected graph in the graphs treeview.
*/
void
-GraphTreeWindow::show_graph_menu(GdkEventButton* ev)
+GraphTreeWindow::show_graph_menu(GdkEventButton*)
{
Gtk::TreeModel::iterator active = _graph_tree_selection->get_selected();
if (active) {
@@ -166,7 +166,7 @@ GraphTreeWindow::show_graph_menu(GdkEventButton* ev)
void
GraphTreeWindow::event_graph_activated(const Gtk::TreeModel::Path& path,
- Gtk::TreeView::Column* col)
+ Gtk::TreeView::Column*)
{
Gtk::TreeModel::iterator active = _graph_treestore->get_iter(path);
Gtk::TreeModel::Row row = *active;