Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ public void dispose() {
*/
void handleImport() {
FileDialog dialog = new FileDialog(getViewSite().getShell());
dialog.setFilterExtensions(new String[] {"*.log"}); //$NON-NLS-1$
dialog.setFilterExtensions("*.log"); //$NON-NLS-1$
if (fDirectory != null) {
dialog.setFilterPath(fDirectory);
}
Expand Down Expand Up @@ -776,7 +776,7 @@ protected void setLogFile(File path) {

private void handleExport(boolean exportWholeLog) {
FileDialog dialog = new FileDialog(getViewSite().getShell(), SWT.SAVE);
dialog.setFilterExtensions(new String[] {"*.log"}); //$NON-NLS-1$
dialog.setFilterExtensions("*.log"); //$NON-NLS-1$
if (fDirectory != null) {
dialog.setFilterPath(fDirectory);
}
Expand Down
Loading