Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Multimedia
JuK
Commits
55c97c4d
Commit
55c97c4d
authored
Mar 03, 2003
by
Tim Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for the "JuK repeats the last track of the playlist" bug.
svn path=/trunk/kdemultimedia/juk/; revision=211163
parent
82c5d2b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gstreamerplayer.cpp
gstreamerplayer.cpp
+3
-2
No files found.
gstreamerplayer.cpp
View file @
55c97c4d
...
...
@@ -49,10 +49,11 @@ GStreamerPlayer::~GStreamerPlayer()
void
GStreamerPlayer
::
play
(
const
QString
&
fileName
,
float
volume
)
{
m_currentFile
=
fileName
;
if
(
!
fileName
.
is
Null
())
if
(
!
fileName
.
is
Empty
())
{
m_player
->
setLocation
(
fileName
);
play
(
volume
);
play
(
volume
);
}
}
void
GStreamerPlayer
::
play
(
float
volume
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment