Commit 5b308d06 authored by Rémi Duraffort's avatar Rémi Duraffort

Qt: add some missing const.

parent ef60a430
...@@ -373,9 +373,9 @@ void DialogsProvider::MLAppendDialog( int tab ) ...@@ -373,9 +373,9 @@ void DialogsProvider::MLAppendDialog( int tab )
/** /**
* Simple open * Simple open
***/ ***/
QStringList DialogsProvider::showSimpleOpen( QString help, QStringList DialogsProvider::showSimpleOpen( const QString& help,
int filters, int filters,
QString path ) const QString& path )
{ {
QString fileTypes = ""; QString fileTypes = "";
if( filters & EXT_FILTER_MEDIA ) { if( filters & EXT_FILTER_MEDIA ) {
...@@ -565,7 +565,7 @@ void DialogsProvider::saveAPlaylist() ...@@ -565,7 +565,7 @@ void DialogsProvider::saveAPlaylist()
****************************************************************************/ ****************************************************************************/
void DialogsProvider::streamingDialog( QWidget *parent, void DialogsProvider::streamingDialog( QWidget *parent,
QString mrl, const QString& mrl,
bool b_transcode_only, bool b_transcode_only,
QStringList options ) QStringList options )
{ {
...@@ -686,7 +686,7 @@ void DialogsProvider::menuUpdateAction( QObject *data ) ...@@ -686,7 +686,7 @@ void DialogsProvider::menuUpdateAction( QObject *data )
func->doFunc( p_intf ); func->doFunc( p_intf );
} }
void DialogsProvider::SDMenuAction( QString data ) void DialogsProvider::SDMenuAction( const QString& data )
{ {
char *psz_sd = strdup( qtu( data ) ); char *psz_sd = strdup( qtu( data ) );
if( !playlist_IsServicesDiscoveryLoaded( THEPL, psz_sd ) ) if( !playlist_IsServicesDiscoveryLoaded( THEPL, psz_sd ) )
......
...@@ -112,11 +112,11 @@ public: ...@@ -112,11 +112,11 @@ public:
return ( instance != NULL ); return ( instance != NULL );
} }
QStringList showSimpleOpen( QString help = QString(), QStringList showSimpleOpen( const QString& help = QString(),
int filters = EXT_FILTER_MEDIA | int filters = EXT_FILTER_MEDIA |
EXT_FILTER_VIDEO | EXT_FILTER_AUDIO | EXT_FILTER_VIDEO | EXT_FILTER_AUDIO |
EXT_FILTER_PLAYLIST, EXT_FILTER_PLAYLIST,
QString path = QString() ); const QString& path = QString() );
bool isDying() { return b_isDying; } bool isDying() { return b_isDying; }
protected: protected:
QSignalMapper *menusMapper; QSignalMapper *menusMapper;
...@@ -179,7 +179,7 @@ public slots: ...@@ -179,7 +179,7 @@ public slots:
void PLAppendDir(); void PLAppendDir();
void MLAppendDir(); void MLAppendDir();
void streamingDialog( QWidget *parent, QString mrl, bool b_stream = true, void streamingDialog( QWidget *parent, const QString& mrl, bool b_stream = true,
QStringList options = QStringList("") ); QStringList options = QStringList("") );
void openAndStreamingDialogs(); void openAndStreamingDialogs();
void openAndTranscodingDialogs(); void openAndTranscodingDialogs();
...@@ -193,7 +193,7 @@ public slots: ...@@ -193,7 +193,7 @@ public slots:
private slots: private slots:
void menuAction( QObject *); void menuAction( QObject *);
void menuUpdateAction( QObject * ); void menuUpdateAction( QObject * );
void SDMenuAction( QString ); void SDMenuAction( const QString& );
signals: signals:
void toolBarConfUpdated(); void toolBarConfUpdated();
}; };
......
...@@ -178,7 +178,7 @@ signals: ...@@ -178,7 +178,7 @@ signals:
/// Send new position, new time and new length /// Send new position, new time and new length
void positionUpdated( float , int, int ); void positionUpdated( float , int, int );
void rateChanged( int ); void rateChanged( int );
void nameChanged( QString ); void nameChanged( const QString& );
/// Used to signal whether we should show navigation buttons /// Used to signal whether we should show navigation buttons
void titleChanged( bool ); void titleChanged( bool );
void chapterChanged( bool ); void chapterChanged( bool );
......
...@@ -178,19 +178,19 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -178,19 +178,19 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
* them down. * them down.
*/ */
/* Naming in the controller statusbar */ /* Naming in the controller statusbar */
CONNECT( THEMIM->getIM(), nameChanged( QString ), CONNECT( THEMIM->getIM(), nameChanged( const QString& ),
this, setName( QString ) ); this, setName( const QString& ) );
/* and in the systray */ /* and in the systray */
if( sysTray ) if( sysTray )
{ {
CONNECT( THEMIM->getIM(), nameChanged( QString ), this, CONNECT( THEMIM->getIM(), nameChanged( const QString& ), this,
updateSystrayTooltipName( QString ) ); updateSystrayTooltipName( const QString& ) );
} }
/* and in the title of the controller */ /* and in the title of the controller */
if( config_GetInt( p_intf, "qt-name-in-title" ) ) if( config_GetInt( p_intf, "qt-name-in-title" ) )
{ {
CONNECT( THEMIM->getIM(), nameChanged( QString ), this, CONNECT( THEMIM->getIM(), nameChanged( const QString& ), this,
setVLCWindowsTitle( QString ) ); setVLCWindowsTitle( const QString& ) );
} }
/** /**
...@@ -910,7 +910,7 @@ void MainInterface::visual() ...@@ -910,7 +910,7 @@ void MainInterface::visual()
/************************************************************************ /************************************************************************
* Other stuff * Other stuff
************************************************************************/ ************************************************************************/
void MainInterface::setName( QString name ) void MainInterface::setName( const QString& name )
{ {
input_name = name; /* store it for the QSystray use */ input_name = name; /* store it for the QSystray use */
/* Display it in the status bar, but also as a Tooltip in case it doesn't /* Display it in the status bar, but also as a Tooltip in case it doesn't
...@@ -923,7 +923,7 @@ void MainInterface::setName( QString name ) ...@@ -923,7 +923,7 @@ void MainInterface::setName( QString name )
* Give the decorations of the Main Window a correct Name. * Give the decorations of the Main Window a correct Name.
* If nothing is given, set it to VLC... * If nothing is given, set it to VLC...
**/ **/
void MainInterface::setVLCWindowsTitle( QString aTitle ) void MainInterface::setVLCWindowsTitle( const QString& aTitle )
{ {
if( aTitle.isEmpty() ) if( aTitle.isEmpty() )
{ {
...@@ -1048,7 +1048,7 @@ void MainInterface::handleSystrayClick( ...@@ -1048,7 +1048,7 @@ void MainInterface::handleSystrayClick(
* Updates the name of the systray Icon tooltip. * Updates the name of the systray Icon tooltip.
* Doesn't check if the systray exists, check before you call it. * Doesn't check if the systray exists, check before you call it.
**/ **/
void MainInterface::updateSystrayTooltipName( QString name ) void MainInterface::updateSystrayTooltipName( const QString& name )
{ {
if( name.isEmpty() ) if( name.isEmpty() )
{ {
......
...@@ -167,13 +167,13 @@ private slots: ...@@ -167,13 +167,13 @@ private slots:
void destroyPopupMenu(); void destroyPopupMenu();
void recreateToolbars(); void recreateToolbars();
void doComponentsUpdate(); void doComponentsUpdate();
void setName( QString ); void setName( const QString& );
void setVLCWindowsTitle( QString title = "" ); void setVLCWindowsTitle( const QString& title = "" );
#if 0 #if 0
void visual(); void visual();
#endif #endif
void handleSystrayClick( QSystemTrayIcon::ActivationReason ); void handleSystrayClick( QSystemTrayIcon::ActivationReason );
void updateSystrayTooltipName( QString ); void updateSystrayTooltipName( const QString& );
void updateSystrayTooltipStatus( int ); void updateSystrayTooltipStatus( int );
void showCryptedLabel( bool ); void showCryptedLabel( bool );
......
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