Commit 1bd04d54 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: add toURI() helper

parent 5b393923
...@@ -275,6 +275,7 @@ SOURCES_qt4 = qt4.cpp \ ...@@ -275,6 +275,7 @@ SOURCES_qt4 = qt4.cpp \
util/input_slider.cpp \ util/input_slider.cpp \
util/customwidgets.cpp \ util/customwidgets.cpp \
util/registry.cpp \ util/registry.cpp \
util/qt_dirs.cpp \
util/pictureflow.cpp util/pictureflow.cpp
noinst_HEADERS = \ noinst_HEADERS = \
......
/*****************************************************************************
* dirs.cpp : file path helpers
****************************************************************************
* Copyright (C) 2010 the VideoLAN team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "qt4.hpp"
#include "qt_dirs.hpp"
#include <vlc_url.h>
QString toURI( const QString& s )
{
QString path = toNativeSeparators( s );
char *psz = make_URI( qtu(path), NULL );
if( psz == NULL )
return qfu("");
QString uri = qfu( psz );
free( psz );
return uri;
}
...@@ -47,5 +47,6 @@ static inline QString colon_unescape( QString s ) ...@@ -47,5 +47,6 @@ static inline QString colon_unescape( QString s )
{ {
return s.replace( "\\:", ":" ).trimmed(); return s.replace( "\\:", ":" ).trimmed();
} }
#endif
QString toURI( const QString& s );
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment