diff options
author | Ken Moore <ken@pcbsd.org> | 2015-03-14 01:27:10 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-03-14 01:27:10 -0400 |
commit | 60ed98c90ba9ee5c4910a36fb39fb3118f383128 (patch) | |
tree | 9f68442f0ac14ef2cead9859ec48279e0896c0f5 /lumina-fm/MainUI.cpp | |
parent | Make sure to clean up any broken sym-links in the favorites directory when th... (diff) | |
download | lumina-60ed98c90ba9ee5c4910a36fb39fb3118f383128.tar.gz lumina-60ed98c90ba9ee5c4910a36fb39fb3118f383128.tar.bz2 lumina-60ed98c90ba9ee5c4910a36fb39fb3118f383128.zip |
Add the ability to set/use custom timezones on the system - defaulting to the system time (whatever that might be).
Diffstat (limited to 'lumina-fm/MainUI.cpp')
-rw-r--r-- | lumina-fm/MainUI.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lumina-fm/MainUI.cpp b/lumina-fm/MainUI.cpp index 56288a80..8ac468a0 100644 --- a/lumina-fm/MainUI.cpp +++ b/lumina-fm/MainUI.cpp @@ -1480,8 +1480,13 @@ void MainUI::ChecksumItems(){ qDebug() << " - Info:" << info; if(info.isEmpty() || (info.length() != files.length()) ){ return; } for(int i=0; i<info.length(); i++){ - info[i] = QString("%2\t(%1)").arg(files[i].section("/",-1), info[i]); + info[i] = QString("%2 \t(%1)").arg(files[i].section("/",-1), info[i]); } + /*QMessageBox dlg(this); + dlg.setWindowFlags( Qt::Dialog ); + dlg.setWindowTitle( tr("File Checksums") ); + dlg.setInformativeText(info.join("\n")); + dlg.exec();*/ QMessageBox::information(this, tr("File Checksums"), info.join("\n") ); } |