pull/1/head
Timothy Pearson 13 years ago
parent 0283ebd335
commit 9b60260916

@ -21,6 +21,8 @@ include_directories(
link_directories(
${TQT_LIBRARY_DIRS}
${CMAKE_BINARY_DIR}/kbfxlib/common
${CMAKE_BINARY_DIR}/kbfxlib/data
)
@ -34,12 +36,12 @@ set( ${target}_SRCS
kbfxplasmacanvasitemwrapper.cpp kbfxplasmacanvasstack.cpp kbfxplasmacanvasview.cpp
kbfxplasmaindexitem.cpp kbfxplasmaindexview.cpp kbfxspinx.cpp kbfxspinxmenu.cpp
kbfxspinxpopup.cpp kbfxspinxscrollbar.cpp kbfxspinxtoolbar.cpp kbfxspinxtoolbutton.cpp
kbfxspinxtop.cpp kbfxspinxview.cpp kbfxtooltip.cpp
kbfxspinxtop.cpp kbfxspinxview.cpp kbfxtooltip.cpp kbfxspinx.skel
)
tde_add_kpart( ${target} AUTOMOC
SOURCES ${${target}_SRCS}
LINK tdecore-shared tdeui-shared kbfxspinx kbfxdata kbfxcommon
LINK tdecore-shared tdeui-shared kio-shared kbfxcommon kbfxdata
DESTINATION ${PLUGIN_INSTALL_DIR}
)

@ -169,7 +169,7 @@ KbfxPlasmaCanvasItem::setSource ( KbfxDataSource src )
else
{
setLabelText ( src.name() );
setName ( src.name() );
setName ( src.name().ascii() );
setComment ( src.comment() );
setIconPath ( src.icon() );

@ -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 () );

@ -228,7 +228,7 @@ KbfxPlasmaIndexView::loadList ( KbfxDataStack * stkPtr )
item->setType ( KbfxPlasmaCanvasItem::INDEX );
item->setText ( it.data ().name );
item->setName ( it.data ().name );
item->setName ( it.data ().name.ascii() );
item->setLabelText ( it.data ().name );
item->setIcon ( it.data ().icon );
item->setId ( it.key () );

Loading…
Cancel
Save