Hi Folks,
I have a very strange issue: I have a List Widget, where I have linked the itemClicked slot to a signal. If I click an item, the _item parameter is perfect.
However, if I have an item selected, and the user opens the menu and enables the function below, the selection array is empty even if the list item is drawn as selected:
Ideas, anyone?Code:if(ui.LstEntries->selectedItems().count()==0) { QMessageBox x(this); x.setText("No item is selected!"); x.setIcon(QMessageBox::Warning); x.exec(); return; } ...



