From c8f58aa186b96c2a9287996caf0f25310f85f8ee Mon Sep 17 00:00:00 2001 From: Mike Hiretsky Date: Mon, 26 Sep 2011 08:52:32 +0400 Subject: [PATCH] Add btrfs and nilfs2 to list filesystem. --- src/mountpointdialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mountpointdialog.cpp b/src/mountpointdialog.cpp index 49c2867..e736d82 100644 --- a/src/mountpointdialog.cpp +++ b/src/mountpointdialog.cpp @@ -101,10 +101,12 @@ void MountPointDialog::setupUi() m_labFS = new QLabel( tr("File system: ") ); m_cmbboxFS = new QComboBox; + m_cmbboxFS->addItem( "btrfs" ); m_cmbboxFS->addItem( "ext2" ); m_cmbboxFS->addItem( "ext3" ); m_cmbboxFS->addItem( "ext4" ); m_cmbboxFS->addItem( "jfs" ); + m_cmbboxFS->addItem( "nilfs2" ); m_cmbboxFS->addItem( "reiserfs" ); m_cmbboxFS->addItem( "xfs" ); m_cmbboxFS->addItem( "swap" );