diff options
author | Timothy Pearson <[email protected]> | 2011-11-25 15:32:14 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-11-25 15:32:14 -0600 |
commit | 9b60260916ad138fc84c49429630c589f09aec22 (patch) | |
tree | 6b126988296fe3ae06495b5605564a71093022bc /src/kbfxplasmacanvasview.cpp | |
parent | 0283ebd335acf17eea88905596d131c5c6734b14 (diff) | |
download | kbfx-9b60260916ad138fc84c49429630c589f09aec22.tar.gz kbfx-9b60260916ad138fc84c49429630c589f09aec22.zip |
Fix FBTFS
Diffstat (limited to 'src/kbfxplasmacanvasview.cpp')
-rw-r--r-- | src/kbfxplasmacanvasview.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/kbfxplasmacanvasview.cpp b/src/kbfxplasmacanvasview.cpp index d50e33b..57b3106 100644 --- a/src/kbfxplasmacanvasview.cpp +++ b/src/kbfxplasmacanvasview.cpp @@ -245,8 +245,10 @@ KbfxPlasmaCanvasView::startDrag () qDebug ( "null source" ); return; } + TQStrList uriList; + uriList.append(src->contentPath().ascii()); TQUriDrag *drag = - new TQUriDrag ( TQStrList ( src->contentPath () ), this, + new TQUriDrag ( uriList, this, src->name ().ascii () ); drag->setFileNames ( TQStringList ( src->contentPath () ) ); drag->setPixmap ( m_currentItem->dragPixmap () ); |