diff -r bc9a74f8e67b -r 20c7966a3405 debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/StopModeRomImageWizardPage.java --- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/StopModeRomImageWizardPage.java Thu Dec 10 14:51:11 2009 -0600 +++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/StopModeRomImageWizardPage.java Thu Dec 10 14:53:07 2009 -0600 @@ -17,6 +17,7 @@ package com.nokia.cdt.internal.debug.launch.wizard; import com.nokia.cpp.internal.api.utils.core.Check; +import com.nokia.cpp.internal.api.utils.ui.BrowseDialogUtils; import cwdbg.PreferenceConstants; @@ -167,6 +168,8 @@ dialog.setFilterExtensions(new String[] {"*.img*", "*.*"}); //$NON-NLS-1$ //$NON-NLS-2$ dialog.setFilterNames(new String[] {Messages.getString("StopModeRomImageWizardPage.14"), Messages.getString("StopModeRomImageWizardPage.10")}); //$NON-NLS-1$ //$NON-NLS-2$ + BrowseDialogUtils.initializeFrom(dialog, romImagePath); + String result = dialog.open(); if (result != null && new File(result).exists()) { romImagePath.setText(result); @@ -199,6 +202,8 @@ dialog.setFilterExtensions(new String[] {"*.log*", "*.*"}); //$NON-NLS-1$ //$NON-NLS-2$ dialog.setFilterNames(new String[] {Messages.getString("StopModeRomImageWizardPage.9"), Messages.getString("StopModeRomImageWizardPage.10")}); //$NON-NLS-1$ //$NON-NLS-2$ + BrowseDialogUtils.initializeFrom(dialog, romLogFilePath); + String result = dialog.open(); if (result != null && new File(result).exists()) { romLogFilePath.setText(result);