diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-03-01 17:05:50 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-04-03 12:32:32 +0200 |
| commit | bac5c9cf643e9333479ac667426d0b70f8f3aa7f (patch) | |
| tree | 5fc0eac69ace5d21c1a1b40e6b610058b92a4bd7 /src/qt/intro.cpp | |
| parent | Replace includes of boost/filesystem.h with fs.h (diff) | |
| download | discoin-bac5c9cf643e9333479ac667426d0b70f8f3aa7f.tar.xz discoin-bac5c9cf643e9333479ac667426d0b70f8f3aa7f.zip | |
Replace uses of boost::filesystem with fs
Step two in abstracting away boost::filesystem.
To repeat this, simply run:
```
git ls-files \*.cpp \*.h | xargs sed -i 's/boost::filesystem/fs/g'
```
Diffstat (limited to 'src/qt/intro.cpp')
| -rw-r--r-- | src/qt/intro.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index bafdfc917..2a7ea0ff6 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -69,7 +69,7 @@ FreespaceChecker::FreespaceChecker(Intro *_intro) void FreespaceChecker::check() { - namespace fs = boost::filesystem; + namespace fs = fs; QString dataDirStr = intro->getPathToCheck(); fs::path dataDir = GUIUtil::qstringToBoostPath(dataDirStr); uint64_t freeBytesAvailable = 0; @@ -189,7 +189,7 @@ QString Intro::getDefaultDataDirectory() bool Intro::pickDataDirectory() { - namespace fs = boost::filesystem; + namespace fs = fs; QSettings settings; /* If data directory provided on command line, no need to look at settings or show a picking dialog */ |