summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2005-09-26 04:09:59 +0000
committerTaybin Rutkin <taybin@taybin.com>2005-09-26 04:09:59 +0000
commit97c911262100ad866a17a0aea8f4f0d306fb6625 (patch)
tree379e1b559358e40e1d91f54733c8d19728ce78e6 /gtk2_ardour/utils.cc
parentd880812c3a789bd62ba9427a7fb0704a8dff561f (diff)
Removed *-config.in files (deprecated).
git-svn-id: svn://localhost/trunk/ardour2@40 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index ee124db50f..b313d3b129 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -450,9 +450,9 @@ pane_handler (GdkEventButton* ev, Gtk::Paned* pane)
pos = Gtkmm2ext::gtk_paned_get_position (pane->gobj());
if (dynamic_cast<VPaned*>(pane)) {
- cmp = pane->height();
+ cmp = pane->get_height();
} else {
- cmp = pane->width();
+ cmp = pane->get_width();
}
/* we have to use approximations here because we can't predict the
@@ -481,9 +481,9 @@ pane_handler (GdkEventButton* ev, Gtk::Paned* pane)
pane->set_position (1);
} else {
if (dynamic_cast<VPaned*>(pane)) {
- pane->set_position (pane->height());
+ pane->set_position (pane->get_height());
} else {
- pane->set_position (pane->width());
+ pane->set_position (pane->get_width());
}
}
}