diff options
author | Arno <am@disconnect.de> | 2013-04-06 06:12:00 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-04-06 06:12:00 +0200 |
commit | 511d1f9cd61586336014c55e32f67872e5e4ee10 (patch) | |
tree | 1b1b7b15b5aedbcb97438e872eb813b1186455a1 /filesystemwidget.cpp | |
parent | 17a14b44b97af461eef2ec4f7da8f762588f1d32 (diff) | |
download | SheMov-511d1f9cd61586336014c55e32f67872e5e4ee10.tar.gz SheMov-511d1f9cd61586336014c55e32f67872e5e4ee10.tar.bz2 SheMov-511d1f9cd61586336014c55e32f67872e5e4ee10.zip |
Put duration and size in one Field (SmDirModel)
Consolidate duration and size in one Field, like in the archive, to be
consistent. Also rename the Role and Field accordingly.
Diffstat (limited to 'filesystemwidget.cpp')
-rw-r--r-- | filesystemwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filesystemwidget.cpp b/filesystemwidget.cpp index 6204727..a28fea3 100644 --- a/filesystemwidget.cpp +++ b/filesystemwidget.cpp @@ -43,7 +43,7 @@ FilesystemWidget::FilesystemWidget(QWidget *parent) : QWidget(parent), mClipboar mIconProvider = new SheMovIconProvider; mModel->setIconProvider(mIconProvider); - QStringList fHeaders = QStringList() << tr("Name") << tr("Size") << tr("Type") << tr("Created") << tr("Md5Sum") << tr("Duration") << tr("Bitrate") << tr("Full Path") << tr("Pic Size"); + QStringList fHeaders = QStringList() << tr("Name") << tr("Size") << tr("Type") << tr("Created") << tr("Md5Sum") << tr("Dur./Size") << tr("Bitrate") << tr("Full Path"); mFileModel = new SmDirModel(fHeaders, this); connect(mFileModel, SIGNAL(needResize()), this, SLOT(resizeFileView())); |