Commit 3d14423a authored by Rémi Duraffort's avatar Rémi Duraffort

qt4: use references to const QString.

parent dd12032d
...@@ -84,7 +84,7 @@ QMenu *QVLCMenu::recentsMenu = NULL; ...@@ -84,7 +84,7 @@ QMenu *QVLCMenu::recentsMenu = NULL;
* Add static entries to DP in menus * Add static entries to DP in menus
***************************************************************************/ ***************************************************************************/
void addDPStaticEntry( QMenu *menu, void addDPStaticEntry( QMenu *menu,
const QString text, const QString& text,
const char *icon, const char *icon,
const char *member, const char *member,
const char *shortcut = NULL ) const char *shortcut = NULL )
...@@ -113,7 +113,7 @@ void addDPStaticEntry( QMenu *menu, ...@@ -113,7 +113,7 @@ void addDPStaticEntry( QMenu *menu,
***/ ***/
QAction* addMIMStaticEntry( intf_thread_t *p_intf, QAction* addMIMStaticEntry( intf_thread_t *p_intf,
QMenu *menu, QMenu *menu,
const QString text, const QString& text,
const char *icon, const char *icon,
const char *member, const char *member,
bool bStatic = false ) bool bStatic = false )
...@@ -1366,7 +1366,7 @@ int QVLCMenu::CreateChoicesMenu( QMenu *submenu, const char *psz_var, ...@@ -1366,7 +1366,7 @@ int QVLCMenu::CreateChoicesMenu( QMenu *submenu, const char *psz_var,
} }
void QVLCMenu::CreateAndConnect( QMenu *menu, const char *psz_var, void QVLCMenu::CreateAndConnect( QMenu *menu, const char *psz_var,
QString text, QString help, const QString& text, const QString& help,
int i_item_type, vlc_object_t *p_obj, int i_item_type, vlc_object_t *p_obj,
vlc_value_t val, int i_val_type, vlc_value_t val, int i_val_type,
bool checked ) bool checked )
......
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