Mercurial > parpg-core
diff src/parpg/gui/containergui_base.py @ 178:487fba82abff
Moved the action module into the entities package.
Removed the objects package.
author | KarstenBock@gmx.net |
---|---|
date | Sun, 09 Oct 2011 21:02:48 +0200 |
parents | 2d671e57badb |
children |
line wrap: on
line diff
--- a/src/parpg/gui/containergui_base.py Sun Oct 09 20:54:03 2011 +0200 +++ b/src/parpg/gui/containergui_base.py Sun Oct 09 21:02:48 2011 +0200 @@ -18,7 +18,7 @@ from parpg import vfs from parpg.gui import drag_drop_data as data_drag -from parpg.objects.action import ACTIONS +from parpg.entities.action import ACTIONS from parpg.entities import General class ContainerGUIBase(object): @@ -142,7 +142,7 @@ def executeMenuItem(self, action): """Executes the items action @param action: The action to run - @type action: Class derived from parpg.objects.action.Action + @type action: Class derived from parpg.entities.action.Action """ action.execute()