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/dirstatdoc.cpp')
-rw-r--r--windirstat/dirstatdoc.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/windirstat/dirstatdoc.cpp b/windirstat/dirstatdoc.cpp
index cf85958..5bad15d 100644
--- a/windirstat/dirstatdoc.cpp
+++ b/windirstat/dirstatdoc.cpp
@@ -2,7 +2,7 @@
//
// WinDirStat - Directory Statistics
// Copyright (C) 2003-2005 Bernhard Seifert
-// Copyright (C) 2004-2017 WinDirStat Team (windirstat.net)
+// Copyright (C) 2004-2019 WinDirStat Team (windirstat.net)
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -67,16 +67,16 @@ IMPLEMENT_DYNCREATE(CDirstatDoc, CDocument)
CDirstatDoc::CDirstatDoc()
+ : m_showFreeSpace(CPersistence::GetShowFreeSpace())
+ , m_showUnknown(CPersistence::GetShowUnknown())
+ , m_showMyComputer(false)
+ , m_rootItem(NULL)
+ , m_zoomItem(NULL)
+ , m_workingItem(NULL)
+ , m_extensionDataValid(false)
{
ASSERT(NULL == _theDocument);
_theDocument = this;
- m_rootItem = NULL;
- m_workingItem = NULL;
- m_zoomItem = NULL;
-
- m_showFreeSpace = CPersistence::GetShowFreeSpace();
- m_showUnknown = CPersistence::GetShowUnknown();
- m_extensionDataValid = false;
VTRACE(_T("sizeof(CItem) = %d"), sizeof(CItem));
}