summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-09-08 12:49:24 +0200
committerRobin Gareus <robin@gareus.org>2015-09-08 12:49:24 +0200
commit78f028b6907fa93b55e62fb90beac97824db325f (patch)
treeae8fa05e19db3a7bb51cba975e4cfa78e7f2121b
parentc315c6f140a7b48d85d352fdc8e2fb21936a3b2d (diff)
fix redeclaration of symbol
-rw-r--r--gtk2_ardour/rc_option_editor.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index fce5a4a780..4e2a1f29d0 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -2781,16 +2781,16 @@ RCOptionEditor::RCOptionEditor ()
/* INTERFACE */
#ifdef OPTIONAL_CAIRO_IMAGE_SURFACE
- BoolOption* bgo = new BoolOption (
+ BoolOption* bgc = new BoolOption (
"cairo-image-surface",
_("Disable Graphics Hardware Acceleration (requires restart)"),
sigc::mem_fun (*_ui_config, &UIConfiguration::get_cairo_image_surface),
sigc::mem_fun (*_ui_config, &UIConfiguration::set_cairo_image_surface)
);
- Gtkmm2ext::UI::instance()->set_tip (bgo->tip_widget(), string_compose (
+ Gtkmm2ext::UI::instance()->set_tip (bgc->tip_widget(), string_compose (
_("Render large parts of the application user-interface in software, instead of using 2D-graphics acceleration.\nThis requires restarting %1 before having an effect"), PROGRAM_NAME));
- add_option (S_("Preferences|GUI"), bgo);
+ add_option (S_("Preferences|GUI"), bgc);
#endif
#ifdef CAIRO_SUPPORTS_FORCE_BUGGY_GRADIENTS_ENVIRONMENT_VARIABLE