diff --git a/src/DataViews/MediaView.py b/src/DataViews/MediaView.py index 4e8a35ac7..f3bb02fde 100644 --- a/src/DataViews/MediaView.py +++ b/src/DataViews/MediaView.py @@ -56,7 +56,6 @@ import Utils import Bookmarks import Mime import gen.lib -from QuestionDialog import ErrorDialog from Editors import EditMedia, DeleteMediaQuery import Errors from Filters.SideBar import MediaSidebarFilter @@ -72,7 +71,7 @@ class MediaView(PageView.ListView): """ Provide the Media View interface on the GRAMPS main window. This allows people to manage all media items in their database. This is very similar - to the other list based views, with the exeception that it also has a + to the other list based views, with the exception that it also has a thumbnail image at the top of the view that must be updated when the selection changes or when the selected media object changes. """ @@ -123,7 +122,7 @@ class MediaView(PageView.ListView): def _set_dnd(self): """ - Set up drag-n-drop. The source and destionation are set by calling .target() + Set up drag-n-drop. The source and destination are set by calling .target() on the _DND_TYPE. Obviously, this means that there must be a _DND_TYPE variable defined that points to an entry in DdTargets. """ diff --git a/src/DisplayTabs/_EmbeddedList.py b/src/DisplayTabs/_EmbeddedList.py index cbce870b5..f0d2c9faa 100644 --- a/src/DisplayTabs/_EmbeddedList.py +++ b/src/DisplayTabs/_EmbeddedList.py @@ -99,9 +99,9 @@ class EmbeddedList(ButtonTab): if ref: self.right_click(obj, event) elif event.type == gtk.gdk.BUTTON_PRESS and event.button == 2: - fun = self.get_middle_click() - if fun: - fun() + fun = self.get_middle_click() + if fun: + fun() def get_popup_menu_items(self): """ @@ -165,7 +165,7 @@ class EmbeddedList(ButtonTab): def _set_dnd(self): """ - Set up drag-n-drop. The source and destionation are set by calling .target() + Set up drag-n-drop. The source and destination are set by calling .target() on the _DND_TYPE. Obviously, this means that there must be a _DND_TYPE variable defined that points to an entry in DdTargets. """ @@ -216,7 +216,7 @@ class EmbeddedList(ButtonTab): """ Handle the standard gtk interface for drag_data_received. - If the selection data is define, extract the value from sel_data.data, + If the selection data is defined, extract the value from sel_data.data, and decide if this is a move or a reorder. """ if sel_data and sel_data.data: @@ -242,7 +242,7 @@ class EmbeddedList(ButtonTab): def tree_drag_motion(self, *args): """ On drag motion one wants the list to show as the database - representation so it is clear how save will change the data + representation so it is clear how save will change the data. """ pass @@ -289,7 +289,7 @@ class EmbeddedList(ButtonTab): path = '%d' % (row_from-1) self.tree.get_selection().select_path(path) - def _move_down(self, row_from, obj,selmethod=None): + def _move_down(self, row_from, obj, selmethod=None): """ Move the item a position down in the EmbeddedList. Eg: 0,1,2,3 needs to become 0,2,1,3, here row_from = 1 @@ -328,14 +328,14 @@ class EmbeddedList(ButtonTab): if ref: pos = self.find_index(ref) if pos > 0 : - self._move_up(pos,ref) + self._move_up(pos, ref) def down_button_clicked(self, obj): ref = self.get_selected() if ref: pos = self.find_index(ref) - if pos >=0 and pos < len(self.get_data())-1: - self._move_down(pos,ref) + if pos >= 0 and pos < len(self.get_data())-1: + self._move_down(pos, ref) def build_interface(self): """ @@ -362,7 +362,7 @@ class EmbeddedList(ButtonTab): def get_selected(self): """ - returns the value associated with selected row in the model, + Return the value associated with selected row in the model, based of the _HANDLE_COL value. Each model must define this to indicate what the returned value should be. If no selection has been made, None is returned. @@ -385,7 +385,7 @@ class EmbeddedList(ButtonTab): Return the data associated with the list. This is typically a list of objects. - This should be overridden in the derrived classes. + This should be overridden in the derived classes. """ raise NotImplementedError @@ -396,7 +396,7 @@ class EmbeddedList(ButtonTab): where the first in indicates if the column is visible, and the second column indicates the index into the model. - This should be overridden in the derrived classes. + This should be overridden in the derived classes. """ raise NotImplementedError diff --git a/src/DisplayTabs/_GalleryTab.py b/src/DisplayTabs/_GalleryTab.py index c39a57ce6..c6d7e2b0c 100644 --- a/src/DisplayTabs/_GalleryTab.py +++ b/src/DisplayTabs/_GalleryTab.py @@ -349,7 +349,7 @@ class GalleryTab(ButtonTab, DbGUIElement): def _set_dnd(self): """ - Set up drag-n-drop. The source and destionation are set by calling .target() + Set up drag-n-drop. The source and destination are set by calling .target() on the _DND_TYPE. Obviously, this means that there must be a _DND_TYPE variable defined that points to an entry in DdTargets. """ diff --git a/src/DisplayTabs/_GrampsTab.py b/src/DisplayTabs/_GrampsTab.py index b1b5752d0..deb9a686d 100644 --- a/src/DisplayTabs/_GrampsTab.py +++ b/src/DisplayTabs/_GrampsTab.py @@ -99,7 +99,7 @@ class GrampsTab(gtk.VBox): def build_label_widget(self): """ Standard routine to build a widget. Does not need to be overridden - by the derrived class. Creates an container that has the label and + by the derived class. Creates an container that has the label and the icon in it. @returns: widget to be used for the notebook label. @rtype: gtk.HBox @@ -130,7 +130,7 @@ class GrampsTab(gtk.VBox): def get_icon_name(self): """ Provide the name of the registered stock icon to be used as the - icon in the label. This is typically overridden by the derrived + icon in the label. This is typically overridden by the derived class to provide the new name. @returns: stock icon name @rtype: str @@ -188,7 +188,7 @@ class GrampsTab(gtk.VBox): def build_interface(self): """ Builds the interface for the derived class. This function should be - overridden in the derived class. Since the classes are derrived from + overridden in the derived class. Since the classes are derived from gtk.HBox, the self.pack_start, self.pack_end, and self.add functions can be used to add widgets to the interface. """ diff --git a/src/ListModel.py b/src/ListModel.py index 0c7559d5f..9686d12a3 100644 --- a/src/ListModel.py +++ b/src/ListModel.py @@ -266,7 +266,7 @@ class ListModel(object): def get_icon(self): """ - Return an icond to be used for Drag and drop. + Return an icon to be used for Drag and drop. """ if self.mode == gtk.SELECTION_SINGLE: store, node = self.selection.get_selected() @@ -279,7 +279,7 @@ class ListModel(object): def __build_select_list(self, store, path, node, dlist): """ - GTK callback function for waliking a select list + GTK callback function for walking a select list """ dlist.append(self.model.get_value(node, self.data_index)) diff --git a/src/Navigation.py b/src/Navigation.py index 607e506ea..dc27e1003 100644 --- a/src/Navigation.py +++ b/src/Navigation.py @@ -109,7 +109,7 @@ class BaseNavigation(object): def build_item_name(self, handle): """ Builds a string from the passed handle. Must be overridden by the - derrived class. + derived class. """ return "ERROR"