~siretart/vlc/ubuntu

« back to all changes in this revision

Viewing changes to modules/gui/qt4/dialogs/sout.cpp

  • Committer: Reinhard Tartler
  • Date: 2008-09-26 06:45:40 UTC
  • mto: (21.2.1 vlc-0.9.3)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: siretart@tauware.de-20080926064540-0sd8zwmig33ksmy4
Tags: upstream-ubuntu-0.9.3
Import upstream version 0.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * Copyright (C) 2007 Société des arts technologiques
6
6
 * Copyright (C) 2007 Savoir-faire Linux
7
7
 *
8
 
 * $Id: 699bd48f8f838f7cad9f30f8d32b305e0f890a7b $
 
8
 * $Id: 2e0f270f6acf3300e43245eaa4898f06a4b9fc5c $
9
9
 *
10
10
 * Authors: Clément Stenac <zorglub@videolan.org>
11
11
 *          Jean-Baptiste Kempf <jb@videolan.org>
216
216
{
217
217
    QString fileName = QFileDialog::getSaveFileName( this, qtr( "Save file" ), "",
218
218
        qtr( "Containers (*.ps *.ts *.mpg *.ogg *.asf *.mp4 *.mov *.wav *.raw *.flv)" ) );
219
 
    ui.fileEdit->setText( fileName );
 
219
    ui.fileEdit->setText( toNativeSeparators( fileName ) );
220
220
    updateMRL();
221
221
}
222
222