Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion YUViewLib/src/playlistitem/playlistItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ class playlistItem : public QObject, public QTreeWidgetItem
virtual Properties properties() const { return this->prop; };

// Set the name of the item. This is also the name that is shown in the tree view
void setName(const QString &name);
void setName(const QString &name);
QString getName() const { return this->prop.name; }

// After loading the playlist, this playlistID has to be reset because it is only valid within
// this playlist. If another
Expand Down
2 changes: 1 addition & 1 deletion YUViewLib/src/video/caching/VideoCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ void VideoCache::threadCachingFinished()
{
DEBUG_CACHING_DETAIL("VideoCache::threadCachingFinished WorkerList - worker %p - working %d",
thread,
t->worker()->isWorking());
thread->worker()->isWorking());
if (thread->worker()->isWorking())
// A job is still running. Wait.
jobsRunning = true;
Expand Down
Loading