mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: #1193 Code cleanup.
This commit is contained in:
parent
3d3f1abb9c
commit
53b25193a2
1 changed files with 2 additions and 2 deletions
|
@ -80,10 +80,10 @@ CSettingsDialog::~CSettingsDialog()
|
|||
|
||||
void CSettingsDialog::addPath()
|
||||
{
|
||||
QListWidgetItem *newItem = new QListWidgetItem;
|
||||
QString newPath = QFileDialog::getExistingDirectory(this);
|
||||
if (!(newPath == ""))
|
||||
if (!newPath.isEmpty())
|
||||
{
|
||||
QListWidgetItem *newItem = new QListWidgetItem;
|
||||
newItem->setText(newPath);
|
||||
newItem->setFlags(Qt::ItemIsEditable | Qt::ItemIsEnabled | Qt::ItemIsSelectable);
|
||||
ui.pathsListWidget->addItem(newItem);
|
||||
|
|
Loading…
Reference in a new issue