view dwt/browser/FilePicker_1_8.d @ 344:8198e6052012

more fixups:
author John Reimer <terminal.node@gmail.com>
date Mon, 27 Oct 2008 22:41:01 -0700
parents 942da4b6558a
children 9a4d7706df52
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2003, 2007 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 * Port to the D programming language:
 *      John Reimer <terminal.node@gmail.com>
 *******************************************************************************/
module dwt.browser.FilePicker_1_8;

import dwt.dwthelper.utils;

import dwt.browser.FilePicker;
import XPCOM = dwt.internal.mozilla.XPCOM;
import dwt.internal.mozilla.nsStringAPI;

class FilePicker_1_8 : FilePicker {

String parseAString (nsAString* string) {
    if (string is null) return null;
    return nsAString.toString(string);
}
}