diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2012-01-03 00:07:54 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2012-01-03 00:07:54 +0000 |
| commit | c0ae0bee37a04c6e79dbe0de00f173c80917ffbe (patch) | |
| tree | 175bfaf44d18be4d17ebd3803cb0ec7314c2e37e /src/ui/widget/tolerance-slider.cpp | |
| parent | add buttons for node adding at extrema (diff) | |
| download | inkscape-c0ae0bee37a04c6e79dbe0de00f173c80917ffbe.tar.gz inkscape-c0ae0bee37a04c6e79dbe0de00f173c80917ffbe.zip | |
Cleanup GSEAL issues and deprecated GtkTooltips
(bzr r10826)
Diffstat (limited to 'src/ui/widget/tolerance-slider.cpp')
| -rw-r--r-- | src/ui/widget/tolerance-slider.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/widget/tolerance-slider.cpp b/src/ui/widget/tolerance-slider.cpp index aa749fb39..5846a0c64 100644 --- a/src/ui/widget/tolerance-slider.cpp +++ b/src/ui/widget/tolerance-slider.cpp @@ -79,7 +79,7 @@ void ToleranceSlider::init (const Glib::ustring& label1, const Glib::ustring& la _hscale->set_size_request (100, -1); _old_val = 10; _hscale->set_value (_old_val); - _tt.set_tip (*_hscale, tip1); + _hscale->set_tooltip_text (tip1); _hbox->add (*_hscale); @@ -91,8 +91,8 @@ void ToleranceSlider::init (const Glib::ustring& label1, const Glib::ustring& la _radio_button_group = _button1->get_group(); _button2 = manage (new Gtk::RadioButton); _button2->set_group(_radio_button_group); - _tt.set_tip (*_button1, tip2); - _tt.set_tip (*_button2, tip3); + _button1->set_tooltip_text (tip2); + _button2->set_tooltip_text (tip3); _button1->add (*theLabel3); _button1->set_alignment (0.0, 0.5); _button2->add (*theLabel2); |
