summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_ed.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-09-02 17:01:36 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-09-02 17:01:36 +0000
commit98d994f29c968796c5e9822e7c3b1713e53b274d (patch)
treea7fa55f288046f51e9138eb3be60b6329fedb34d /gtk2_ardour/ardour_ui_ed.cc
parentbeb9c71113da8e1d985564b24b4b7dce6d364156 (diff)
fix a variety of unused argument errors noted by gcc 4.3.2 on x86
git-svn-id: svn://localhost/ardour2/branches/3.0@7733 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ardour_ui_ed.cc')
-rw-r--r--gtk2_ardour/ardour_ui_ed.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/ardour_ui_ed.cc b/gtk2_ardour/ardour_ui_ed.cc
index e493de0be2..0c67d4b59d 100644
--- a/gtk2_ardour/ardour_ui_ed.cc
+++ b/gtk2_ardour/ardour_ui_ed.cc
@@ -629,7 +629,7 @@ ARDOUR_UI::float_big_clock (Gtk::Window* parent)
}
void
-ARDOUR_UI::big_clock_size_allocate (Gtk::Allocation& allocation)
+ARDOUR_UI::big_clock_size_allocate (Gtk::Allocation&)
{
if (!big_clock_resize_in_progress) {
Glib::signal_idle().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::idle_big_clock_text_resizer), 0, 0));
@@ -638,7 +638,7 @@ ARDOUR_UI::big_clock_size_allocate (Gtk::Allocation& allocation)
}
bool
-ARDOUR_UI::idle_big_clock_text_resizer (int win_w, int win_h)
+ARDOUR_UI::idle_big_clock_text_resizer (int, int)
{
big_clock_resize_in_progress = false;