diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2012-01-03 01:11:07 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2012-01-03 01:11:07 +0000 |
| commit | 1c82ead814a66075e98fffdf152652452b4dda34 (patch) | |
| tree | 3869812f527dc30a4ece6d43f8fc1feed7cd152d /src/ui/widget/layer-selector.cpp | |
| parent | Cleanup GSEAL issues and deprecated GtkTooltips (diff) | |
| download | inkscape-1c82ead814a66075e98fffdf152652452b4dda34.tar.gz inkscape-1c82ead814a66075e98fffdf152652452b4dda34.zip | |
More deprecated GtkTooltips
(bzr r10827)
Diffstat (limited to 'src/ui/widget/layer-selector.cpp')
| -rw-r--r-- | src/ui/widget/layer-selector.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/widget/layer-selector.cpp b/src/ui/widget/layer-selector.cpp index de482fb74..08534059b 100644 --- a/src/ui/widget/layer-selector.cpp +++ b/src/ui/widget/layer-selector.cpp @@ -112,7 +112,7 @@ LayerSelector::LayerSelector(SPDesktop *desktop) _visibility_toggle.set_relief(Gtk::RELIEF_NONE); shrink_wrap_button(_visibility_toggle); - _tooltips.set_tip(_visibility_toggle, _("Toggle current layer visibility")); + _visibility_toggle.set_tooltip_text(_("Toggle current layer visibility")); pack_start(_visibility_toggle, Gtk::PACK_EXPAND_PADDING); label = Gtk::manage(new AlternateIcons(Inkscape::ICON_SIZE_DECORATION, @@ -133,10 +133,10 @@ LayerSelector::LayerSelector(SPDesktop *desktop) _lock_toggle.set_relief(Gtk::RELIEF_NONE); shrink_wrap_button(_lock_toggle); - _tooltips.set_tip(_lock_toggle, _("Lock or unlock current layer")); + _lock_toggle.set_tooltip_text(_("Lock or unlock current layer")); pack_start(_lock_toggle, Gtk::PACK_EXPAND_PADDING); - _tooltips.set_tip(_selector, _("Current layer")); + _selector.set_tooltip_text(_("Current layer")); pack_start(_selector, Gtk::PACK_EXPAND_WIDGET); _layer_model = Gtk::ListStore::create(_model_columns); |
