Commit 58019c25 authored by Friedemann Kleint's avatar Friedemann Kleint Committed by Yoann Lopes
Browse files

Fix constructor parameters in tst_QMediaPlaylist.


Fix warning:
tst_qmediaplaylist.cpp: In member function 'void tst_QMediaPlaylist::mediaPlayListControl()':
tst_qmediaplaylist.cpp:1221:49: warning: the address of 'parent' will always evaluate as 'true' [-Waddress]

Change-Id: I46391550d07a8f58442269d0e5eae418258adbff
Reviewed-by: default avatarYoann Lopes <yoann.lopes@theqtcompany.com>
Showing with 1 addition and 1 deletion
......@@ -1223,7 +1223,7 @@ void tst_QMediaPlaylist::mediaPlayListControl()
{
// To check changes in abstract classe's pure virtual functions
QObject parent;
MockMediaPlaylistControl plylistctrl(&parent);
MockMediaPlaylistControl plylistctrl(false, &parent);
}
// MaemoAPI-1850:test QMediaPlayListSourceControl constructor
......
Supports Markdown
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