summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-06-17 22:43:27 +0000
committerCarl Hetherington <carl@carlh.net>2009-06-17 22:43:27 +0000
commit1fed50f817e1912aea12dcb514f60fe740031f37 (patch)
treea0eeaf8e81cdd1f9de6ab4f6cfbbc233f9ed78bb /gtk2_ardour/editor.h
parentbca8efab600d13077728ee830ad5b516ed437126 (diff)
Reduce complexity of previous commit slightly.
git-svn-id: svn://localhost/ardour2/branches/3.0@5215 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor.h')
-rw-r--r--gtk2_ardour/editor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor.h b/gtk2_ardour/editor.h
index f83ce96540..a1b173fe40 100644
--- a/gtk2_ardour/editor.h
+++ b/gtk2_ardour/editor.h
@@ -2215,7 +2215,8 @@ public:
int resize_idle_id;
bool idle_resize();
friend gboolean _idle_resize (gpointer);
- std::map<TimeAxisView*, int32_t> pending_resizes;
+ int32_t _pending_resize_amount;
+ TimeAxisView* _pending_resize_view;
void visible_order_range (int*, int*) const;
@@ -2227,7 +2228,6 @@ public:
void update_canvas_now ();
void streamview_height_changed ();
- int32_t add_single_to_idle_resize (TimeAxisView*, int32_t);
friend class Drag;
friend class RegionDrag;