filemanager/src/filemanager/src/components/fmcombinedquery.cpp
changeset 25 b7bfdea70ca2
parent 14 1957042d8c7e
child 33 328cf6fbe40c
--- a/filemanager/src/filemanager/src/components/fmcombinedquery.cpp	Mon May 03 12:24:39 2010 +0300
+++ b/filemanager/src/filemanager/src/components/fmcombinedquery.cpp	Fri Jun 25 17:08:34 2010 +0800
@@ -25,7 +25,7 @@
 #include <hblistwidgetitem.h>
 #include <hbabstractviewitem.h>
 
-FmCombinedQuery::FmCombinedQuery( QGraphicsItem *parent ) : HbDialog( parent ), 
+FmCombinedQuery::FmCombinedQuery( QGraphicsItem *parent ) : FmDialog( parent ), 
     mSelectMode ( MultiSelectMode ), mDominantIndex ( -1 )
 {
 	mContentWidget = new QGraphicsWidget();
@@ -110,7 +110,7 @@
 
 void FmCombinedQuery::activated( const QModelIndex &index )
 {
-	int selectedRow = mListWidget->indexPosition( index );
+	int selectedRow = index.row();
 	if( selectedRow == mDominantIndex ){
 		QModelIndexList modelIndexList = mListWidget->selectionModel()->selectedIndexes();
 		for( QModelIndexList::const_iterator it = modelIndexList.begin(); it != modelIndexList.end(); ++it ){