From kde-commits Mon Jun 30 22:29:49 2008 From: =?utf-8?q?Friedrich=20W=2E=20H=2E=20Kossebau?= Date: Mon, 30 Jun 2008 22:29:49 +0000 To: kde-commits Subject: KDE/kdeutils/okteta/program/oktetakakao/controllers/view/stringsextract Message-Id: <1214864989.950236.22066.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121486499715922 SVN commit 826541 by kossebau: fixed: no more doubled strings on copy, by using selectedRows() instead of selectedIndexes() M +1 -1 stringsextractview.cpp --- trunk/KDE/kdeutils/okteta/program/oktetakakao/controllers/view/stringsextract/stringsextractview.cpp #826540:826541 @@ -192,7 +192,7 @@ void StringsExtractView::onCopyButtonClicked() { - const QModelIndexList selectedIndexes = mContainedStringTableView->selectionModel()->selectedIndexes(); + const QModelIndexList selectedIndexes = mContainedStringTableView->selectionModel()->selectedRows(); const QList *containedStringList = mTool->containedStringList(); QString strings;