summaryrefslogtreecommitdiff
path: root/gtk2_ardour/automation_time_axis.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-11-11 04:53:37 +0000
committerDavid Robillard <d@drobilla.net>2008-11-11 04:53:37 +0000
commit4b8fb7e081bcd5172e5903ff3c4d603cfb72aa50 (patch)
tree3f8f3720435a564542f2aa4ca1af8babca6ba1d6 /gtk2_ardour/automation_time_axis.cc
parent5c4601c08ac2e2c8010a5ac4c6d8413442c880ce (diff)
Fix silly careless errors.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4134 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/automation_time_axis.cc')
-rw-r--r--gtk2_ardour/automation_time_axis.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/gtk2_ardour/automation_time_axis.cc b/gtk2_ardour/automation_time_axis.cc
index 98b99cca07..0128ccbba2 100644
--- a/gtk2_ardour/automation_time_axis.cc
+++ b/gtk2_ardour/automation_time_axis.cc
@@ -305,10 +305,7 @@ AutomationTimeAxisView::set_height (uint32_t h)
bool changed_between_small_and_normal = ( (h == hSmall || h == hSmaller) ^ (height == hSmall || height == hSmaller) );
TimeAxisView* state_parent = get_parent_with_state ();
- XMLNode* xml_node;
- if (state_parent) {
- xml_node = state_parent->get_child_xml_node (_state_name);
- }
+ XMLNode* xml_node = (state_parent ? state_parent->get_child_xml_node (_state_name) : NULL);
TimeAxisView::set_height (h);
base_rect->property_y2() = h;