dabo Commit Revision 4761 Date: 2008-12-03 09:06:48 -0800 (Wed, 03 Dec 2008) Author: Paul Trac: http://svn.dabodev.com/trac/dabo/changeset/4761
Changed: U trunk/ide/wizards/AppWizard/spec-BizBase.py.txt U trunk/ide/wizards/AppWizard/spec-FrmBase.py.txt U trunk/ide/wizards/AppWizard/spec-GrdBase.py.txt U trunk/ide/wizards/AppWizard/spec-PagBase.py.txt U trunk/ide/wizards/AppWizard/spec-PagEditBase.py.txt U trunk/ide/wizards/AppWizard/spec-PagSelectBase.py.txt Log: Fixed #1183 reported by JacekK. Diff: Modified: trunk/ide/wizards/AppWizard/spec-BizBase.py.txt =================================================================== --- trunk/ide/wizards/AppWizard/spec-BizBase.py.txt 2008-12-03 03:34:02 UTC (rev 4760) +++ trunk/ide/wizards/AppWizard/spec-BizBase.py.txt 2008-12-03 17:06:48 UTC (rev 4761) @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -import dabo.lib.datanav +import dabo.lib.datanav as datanav class Base(datanav.Bizobj): Modified: trunk/ide/wizards/AppWizard/spec-FrmBase.py.txt =================================================================== --- trunk/ide/wizards/AppWizard/spec-FrmBase.py.txt 2008-12-03 03:34:02 UTC (rev 4760) +++ trunk/ide/wizards/AppWizard/spec-FrmBase.py.txt 2008-12-03 17:06:48 UTC (rev 4761) @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- import dabo.ui -import dabo.lib.datanav +import dabo.lib.datanav as datanav from MenFileOpen import MenFileOpen from MenReports import MenReports Modified: trunk/ide/wizards/AppWizard/spec-GrdBase.py.txt =================================================================== --- trunk/ide/wizards/AppWizard/spec-GrdBase.py.txt 2008-12-03 03:34:02 UTC (rev 4760) +++ trunk/ide/wizards/AppWizard/spec-GrdBase.py.txt 2008-12-03 17:06:48 UTC (rev 4761) @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -import dabo.lib.datanav +import dabo.lib.datanav as datanav class GrdBase(datanav.Grid): Modified: trunk/ide/wizards/AppWizard/spec-PagBase.py.txt =================================================================== --- trunk/ide/wizards/AppWizard/spec-PagBase.py.txt 2008-12-03 03:34:02 UTC (rev 4760) +++ trunk/ide/wizards/AppWizard/spec-PagBase.py.txt 2008-12-03 17:06:48 UTC (rev 4761) @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -import dabo.lib.datanav +import dabo.lib.datanav as datanav class PagBase(datanav.Page): Modified: trunk/ide/wizards/AppWizard/spec-PagEditBase.py.txt =================================================================== --- trunk/ide/wizards/AppWizard/spec-PagEditBase.py.txt 2008-12-03 03:34:02 UTC (rev 4760) +++ trunk/ide/wizards/AppWizard/spec-PagEditBase.py.txt 2008-12-03 17:06:48 UTC (rev 4761) @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -import dabo.lib.datanav +import dabo.lib.datanav as datanav class PagEditBase(datanav.EditPage): Modified: trunk/ide/wizards/AppWizard/spec-PagSelectBase.py.txt =================================================================== --- trunk/ide/wizards/AppWizard/spec-PagSelectBase.py.txt 2008-12-03 03:34:02 UTC (rev 4760) +++ trunk/ide/wizards/AppWizard/spec-PagSelectBase.py.txt 2008-12-03 17:06:48 UTC (rev 4761) @@ -3,7 +3,7 @@ import dabo from dabo.dObject import dObject import dabo.dEvents as dEvents -import dabo.lib.datanav +import dabo.lib.datanav as datanav IGNORE_STRING = datanav.IGNORE_STRING _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
