X-Git-Url: http://git.phpeclipse.com diff --git a/archive/net.sourceforge.phpeclipse.sql/src/net/sourceforge/phpdt/sql/wizards/SQLRowWizard.java b/archive/net.sourceforge.phpeclipse.sql/src/net/sourceforge/phpdt/sql/wizards/SQLRowWizard.java index 0ab65b4..ee89fdb 100644 --- a/archive/net.sourceforge.phpeclipse.sql/src/net/sourceforge/phpdt/sql/wizards/SQLRowWizard.java +++ b/archive/net.sourceforge.phpeclipse.sql/src/net/sourceforge/phpdt/sql/wizards/SQLRowWizard.java @@ -10,18 +10,18 @@ public class SQLRowWizard extends Wizard { TableRow row; TableAdapter adapter; public void init(String title, SQLPage page, TableRow row, TableAdapter adapter) { - System.out.println("Init SQL row wizard"); + System.out.println("Init SQL row wizard"); //$NON-NLS-1$ this.row = row; this.adapter = adapter; this.page = page; setWindowTitle(title); } public boolean performFinish() { - System.out.println("Perform SQL row wizard finish"); + System.out.println("Perform SQL row wizard finish"); //$NON-NLS-1$ return page.performFinish(); } public void addPages() { - System.out.println("QL row wizard adding pages"); + System.out.println("SQL row wizard adding pages"); //$NON-NLS-1$ page.init(row, adapter); addPage(page); }