svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=1127770
This commit is contained in:
Volker Lanz 2010-05-17 15:50:10 +00:00
parent 3eb9dc8b4a
commit 2202629829
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ void MainWindow::enableActions()
actionCollection()->action("mountPartition")->setEnabled(part && (part->canMount() || part->canUnmount()));
if (part != NULL)
actionCollection()->action("mountPartition")->setText(part->isMounted() ? part->fileSystem().unmountTitle() : part->fileSystem().mountTitle() );
actionCollection()->action("mountPartition")->setText(part->isMounted() ? part->fileSystem().unmountTitle() : part->fileSystem().mountTitle());
actionCollection()->action("checkPartition")->setEnabled(!readOnly && CheckOperation::canCheck(part));