This commit is contained in:
Uwe Rathmann 2024-09-25 15:52:53 +02:00
commit 1fa98ef9a2
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ int QskSelectionSubWindow::selectedRow() const
QString QskSelectionSubWindow::selectedEntry() const
{
if ( auto listBox = qskListBox( this ) )
listBox->selectedEntry();
return listBox->selectedEntry();
return QString();
}

View File

@ -93,7 +93,7 @@ int QskSelectionWindow::selectedRow() const
QString QskSelectionWindow::selectedEntry() const
{
if ( auto listBox = qskListBox( this ) )
listBox->selectedEntry();
return listBox->selectedEntry();
return QString();
}