diff options
Diffstat (limited to 'src/gui/editors/segment/PlayList.cpp')
-rw-r--r-- | src/gui/editors/segment/PlayList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/editors/segment/PlayList.cpp b/src/gui/editors/segment/PlayList.cpp index da56edc..95d9cfc 100644 --- a/src/gui/editors/segment/PlayList.cpp +++ b/src/gui/editors/segment/PlayList.cpp @@ -143,7 +143,7 @@ PlayList::slotDropped(TQDropEvent *event, TQListViewItem* after) // okay, we have a URI.. process it // weed out non-rg files // - for (TQString url = uri.first(); url; url = uri.next()) { + for (TQString url = uri.first(); !url.isNull(); url = uri.next()) { if (url.right(3).lower() == ".rg") new PlayListViewItem(m_listView, after, KURL(url)); |