Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'windirstat/item.h')
-rw-r--r--windirstat/item.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/windirstat/item.h b/windirstat/item.h
index 2624779..b8839e6 100644
--- a/windirstat/item.h
+++ b/windirstat/item.h
@@ -180,8 +180,8 @@ public:
void SetReadJobDone(bool done = true);
bool IsDone() const;
void SetDone();
- DWORD GetTicksWorked() const;
- void AddTicksWorked(DWORD more);
+ ULONGLONG GetTicksWorked() const;
+ void AddTicksWorked(ULONGLONG more);
void DoSomeWork(CWorkLimiter* limiter);
bool StartRefresh();
void UpwardSetUndone();
@@ -227,7 +227,7 @@ private:
bool m_readJobDone; // FindFiles() (our own read job) is finished.
bool m_done; // Whole Subtree is done.
- DWORD m_ticksWorked; // ms time spent on this item.
+ ULONGLONG m_ticksWorked; // ms time spent on this item.
ULONGLONG m_readJobs; // # "read jobs" in subtree.