missing return added
This commit is contained in:
parent
ae9bc90d38
commit
6e15e74061
|
@ -90,7 +90,7 @@ int QskSelectionSubWindow::selectedRow() const
|
||||||
QString QskSelectionSubWindow::selectedEntry() const
|
QString QskSelectionSubWindow::selectedEntry() const
|
||||||
{
|
{
|
||||||
if ( auto listBox = qskListBox( this ) )
|
if ( auto listBox = qskListBox( this ) )
|
||||||
listBox->selectedEntry();
|
return listBox->selectedEntry();
|
||||||
|
|
||||||
return QString();
|
return QString();
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,7 +93,7 @@ int QskSelectionWindow::selectedRow() const
|
||||||
QString QskSelectionWindow::selectedEntry() const
|
QString QskSelectionWindow::selectedEntry() const
|
||||||
{
|
{
|
||||||
if ( auto listBox = qskListBox( this ) )
|
if ( auto listBox = qskListBox( this ) )
|
||||||
listBox->selectedEntry();
|
return listBox->selectedEntry();
|
||||||
|
|
||||||
return QString();
|
return QString();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue