Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAjay Garg <ajay@activitycentral.com>2012-12-22 15:43:29 (GMT)
committer Ajay Garg <ajay@activitycentral.com>2012-12-22 15:44:11 (GMT)
commit5235de1a11a7d458ff90e072dcb405004aedd267 (patch)
tree8f0ed3f041704d0cf92a4e7b8237eecc5b9f9bf2
parent92d2b9e48094c4bdd7575e2a9238e13136d78d8d (diff)
Fixing one missed gtk3-rebasing-issue in virtual-keyboard.
Signed-off-by: Ajay Garg <ajay@activitycentral.com>
-rw-r--r--src/jarabe/view/virtualkeyboard.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jarabe/view/virtualkeyboard.py b/src/jarabe/view/virtualkeyboard.py
index fc76dff..b8b9fd6 100644
--- a/src/jarabe/view/virtualkeyboard.py
+++ b/src/jarabe/view/virtualkeyboard.py
@@ -1277,17 +1277,17 @@ class Teclado:
box_hablar = Gtk.VBox(False, 10)
box_hablar.set_border_width(20)
- button = Gtk.RadioButton(None, "HABLAR AL BARRER BOTONES.")
+ button = Gtk.RadioButton.new_with_label(None, "HABLAR AL BARRER BOTONES.")
button.connect("toggled", self.set_opciones_hablar, "BARRER")
if (self.get_opciones_hablar()=="BARRER"):
button.set_active(True)
box_hablar.pack_start(button, True, True, 0)
- button = Gtk.RadioButton(button, "HABLAR AL ESCRIBIR.")
+ button = Gtk.RadioButton.new_with_label_from_widget(button, "HABLAR AL ESCRIBIR.")
button.connect("toggled", self.set_opciones_hablar, "ESCRIBIR")
if (self.get_opciones_hablar()=="ESCRIBIR"):
button.set_active(True)
box_hablar.pack_start(button, True, True, 0)
- button = Gtk.RadioButton(button, "NO HABLAR.")
+ button = Gtk.RadioButton.new_with_label_from_widget(button, "NO HABLAR.")
button.connect("toggled", self.set_opciones_hablar, "NUNCA")
if (self.get_opciones_hablar()=="NUNCA"):
button.set_active(True)