Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@laptop.org>2013-01-22 09:45:35 (GMT)
committer Simon Schampijer <simon@laptop.org>2013-01-22 09:45:35 (GMT)
commitd77c6f563d9534b3b304e75b2042a7acb4facbcc (patch)
tree1d02d3b53a363933858d93c22958629814dd36aa
parent2bbeba2446b7228e775d41db05cc0962235c70a5 (diff)
Remove halfish done incomplete docstring
-rw-r--r--src/sugar3/graphics/combobox.py56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/sugar3/graphics/combobox.py b/src/sugar3/graphics/combobox.py
index 170c528..97c4c77 100644
--- a/src/sugar3/graphics/combobox.py
+++ b/src/sugar3/graphics/combobox.py
@@ -43,16 +43,6 @@ class ComboBox(Gtk.ComboBox):
self.set_row_separator_func(self._is_separator, None)
def get_value(self):
- """
- Parameters
- ----------
- None :
-
- Returns:
- --------
- value :
-
- """
row = self.get_active_item()
if not row:
return None
@@ -72,22 +62,6 @@ class ComboBox(Gtk.ComboBox):
return fname
def append_item(self, action_id, text, icon_name=None, file_name=None):
- """
- Parameters
- ----------
- action_id :
-
- text :
-
- icon_name=None :
-
- file_name=None :
-
- Returns
- -------
- None
-
- """
if not self._icon_renderer and (icon_name or file_name):
self._icon_renderer = Gtk.CellRendererPixbuf()
@@ -122,29 +96,9 @@ class ComboBox(Gtk.ComboBox):
self._model.append([action_id, text, pixbuf, False])
def append_separator(self):
- """
- Parameters
- ----------
- None
-
- Returns
- -------
- None
-
- """
self._model.append([0, None, None, True])
def get_active_item(self):
- """
- Parameters
- ----------
- None
-
- Returns
- -------
- Active_item :
-
- """
index = self.get_active()
if index == -1:
index = 0
@@ -155,16 +109,6 @@ class ComboBox(Gtk.ComboBox):
return self._model[row]
def remove_all(self):
- """
- Parameters
- ----------
- None
-
- Returns
- -------
- None
-
- """
self._model.clear()
def _is_separator(self, model, row, data):