GEPS008: Moved UndoHistory module

svn: r19768
This commit is contained in:
Nick Hall 2012-06-05 22:07:47 +00:00
parent f74b14c869
commit eb369d08dd
5 changed files with 4 additions and 5 deletions

View File

@ -20,7 +20,6 @@ src/Spell.py
src/ToolTips.py
src/TransUtils.py
src/Utils.py
src/UndoHistory.py
# cli
src/cli/arghandler.py
@ -342,6 +341,7 @@ src/gui/grampsbar.py
src/gui/grampsgui.py
src/gui/makefilter.py
src/gui/tipofday.py
src/gui/undohistory.py
src/gui/utils.py
src/gui/viewmanager.py

View File

@ -44,7 +44,6 @@ gdir_PYTHON = \
TransUtils.py\
TreeTips.py\
Utils.py\
UndoHistory.py\
PlaceUtils.py
# Clean up all the byte-compiled files

View File

@ -36,6 +36,7 @@ pkgpython_PYTHON = \
navigator.py \
pluginmanager.py \
tipofday.py \
undohistory.py \
user.py \
utils.py \
viewmanager.py

View File

@ -85,7 +85,7 @@ import Errors
from QuestionDialog import (ErrorDialog, WarningDialog, QuestionDialog2,
InfoDialog)
from gui import widgets
import UndoHistory
from gui.undohistory import UndoHistory
import Utils
from gui.dbloader import DbLoader
import GrampsDisplay
@ -1699,8 +1699,7 @@ class ViewManager(CLIManager):
Displays the Undo history window
"""
try:
self.undo_history_window = UndoHistory.UndoHistory(self.dbstate,
self.uistate)
self.undo_history_window = UndoHistory(self.dbstate, self.uistate)
except Errors.WindowActiveError:
return