summaryrefslogtreecommitdiff
path: root/gtk2_ardour/main_clock.h
diff options
context:
space:
mode:
authorColin Fletcher <colin.m.fletcher@googlemail.com>2015-02-15 12:56:25 +0000
committerColin Fletcher <colin.m.fletcher@googlemail.com>2015-03-09 19:17:52 +0000
commit760e00b028f35937abc72695a02838372eb275a7 (patch)
tree5f6d810beb405ae38643db00c52fa98ed440a093 /gtk2_ardour/main_clock.h
parent714677f036fba26df47f2ffd2547447838b3b9b3 (diff)
Remove useless parameters from MainClock constructor
Remove (always false) duration & is_transient and (always true) editable, with_info & follows_playhead parameters from MainClock constructor, and just pass the requisite true & false values along to the AudioClock constructor instead.
Diffstat (limited to 'gtk2_ardour/main_clock.h')
-rw-r--r--gtk2_ardour/main_clock.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk2_ardour/main_clock.h b/gtk2_ardour/main_clock.h
index fc9075432f..767216be08 100644
--- a/gtk2_ardour/main_clock.h
+++ b/gtk2_ardour/main_clock.h
@@ -25,8 +25,7 @@
class MainClock : public AudioClock
{
public:
- MainClock (const std::string& clock_name, bool is_transient, const std::string& widget_name,
- bool editable, bool follows_playhead, bool primary, bool duration = false, bool with_info = false);
+ MainClock (const std::string& clock_name, const std::string& widget_name, bool primary);
private: