┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvo Anjo <[email protected]>2008-05-17 11:35:36 +0000
committerIvo Anjo <[email protected]>2008-05-17 11:35:36 +0000
commit643550b9d75c5993ccd954da4c8540fb834d22fb (patch)
tree2e9c1486ae043a7930a2ea2057e90e28bcda9bfd /src
parent5ab90e19e78faebaca3bbffb83f3379ccdfc37f0 (diff)
Use a quint64 (always 64 bits) instead of a unsigned long int (32 bits
on x86) for summing file sizes of multiple selected files. BUG: 156911 svn path=/trunk/KDE/kdebase/apps/; revision=808698
Diffstat (limited to 'src')
-rw-r--r--src/infosidebarpage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp
index d2652e0d1..cb90fce3e 100644
--- a/src/infosidebarpage.cpp
+++ b/src/infosidebarpage.cpp
@@ -347,7 +347,7 @@ void InfoSidebarPage::showMetaInfo()
m_metaDataWidget->setFiles(urls);
}
- unsigned long int totalSize = 0;
+ quint64 totalSize = 0;
foreach (const KFileItem& item, m_selection) {
// Only count the size of files, not dirs to match what
// DolphinViewContainer::selectionStatusBarText() does.