summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2006-03-25 02:21:27 +0000
committerishmal <ishmal@users.sourceforge.net>2006-03-25 02:21:27 +0000
commitcff0dc515b81a6d0bea2f10b26ef2173b8fff725 (patch)
treea3361fff4979fac10a6db46eb728566220da49aa /src
parentadd enableSiox() for testing (diff)
downloadinkscape-cff0dc515b81a6d0bea2f10b26ef2173b8fff725.tar.gz
inkscape-cff0dc515b81a6d0bea2f10b26ef2173b8fff725.zip
change radio button to check box. oops
(bzr r292)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/tracedialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ui/dialog/tracedialog.cpp b/src/ui/dialog/tracedialog.cpp
index 3939205b9..9f1241eed 100644
--- a/src/ui/dialog/tracedialog.cpp
+++ b/src/ui/dialog/tracedialog.cpp
@@ -88,7 +88,7 @@ class TraceDialogImpl : public TraceDialog
Gtk::Frame sioxFrame;
Gtk::VBox sioxVBox;
Gtk::HBox sioxBox;
- Gtk::RadioButton sioxRadioButton;
+ Gtk::CheckButton sioxButton;
//########## Potrace items
Gtk::VBox potraceBox;
@@ -185,7 +185,7 @@ void TraceDialogImpl::potraceProcess(bool do_i_trace)
//##### Get the preprocessor settings
/* siox -- performed by Tracer, and before any of the others */
- if (sioxRadioButton.get_active())
+ if (sioxButton.get_active())
tracer.enableSiox(true);
else
tracer.enableSiox(false);
@@ -343,9 +343,9 @@ TraceDialogImpl::TraceDialogImpl()
/*#### SIOX ####*/
//# for now, put at the top of the potrace box. something better later
- sioxRadioButton.set_label(_("SIOX subimage selection"));
- sioxBox.pack_start(sioxRadioButton, false, false, MARGIN);
- tips.set_tip(sioxRadioButton, _("Subimage selection with the SIOX algorithm"));
+ sioxButton.set_label(_("SIOX subimage selection"));
+ sioxBox.pack_start(sioxButton, false, false, MARGIN);
+ tips.set_tip(sioxButton, _("Subimage selection with the SIOX algorithm"));
sioxVBox.pack_start(sioxBox, false, false, MARGIN);
sioxFrame.set_label(_("SIOX (W.I.P.)"));
sioxFrame.add(sioxVBox);