diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2009-10-02 06:38:24 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2009-10-02 06:38:24 (GMT) |
commit | 80e8cd071e05305d0fc70fa6d78991cf9b50d7e4 (patch) | |
tree | 9d7e2966cdd25d88418cef9d4e0b0e3490991c26 /util | |
parent | 1b4596ee852eaa770064f2711a1b6445a6c4303d (diff) | |
download | fluxbox_paul-80e8cd071e05305d0fc70fa6d78991cf9b50d7e4.zip fluxbox_paul-80e8cd071e05305d0fc70fa6d78991cf9b50d7e4.tar.bz2 |
just use the FbTk API
Diffstat (limited to 'util')
-rw-r--r-- | util/fluxbox-update_configs.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/util/fluxbox-update_configs.cc b/util/fluxbox-update_configs.cc index fcb9bc2..85bbbfe 100644 --- a/util/fluxbox-update_configs.cc +++ b/util/fluxbox-update_configs.cc | |||
@@ -22,6 +22,7 @@ | |||
22 | #include "../src/FbTk/I18n.hh" | 22 | #include "../src/FbTk/I18n.hh" |
23 | #include "../src/FbTk/Resource.hh" | 23 | #include "../src/FbTk/Resource.hh" |
24 | #include "../src/FbTk/StringUtil.hh" | 24 | #include "../src/FbTk/StringUtil.hh" |
25 | #include "../src/FbTk/FileUtil.hh" | ||
25 | 26 | ||
26 | #include "defaults.hh" | 27 | #include "defaults.hh" |
27 | 28 | ||
@@ -473,11 +474,9 @@ string read_file(const string& filename) { | |||
473 | if (it != file_cache.end()) | 474 | if (it != file_cache.end()) |
474 | return it->second; | 475 | return it->second; |
475 | 476 | ||
476 | struct stat s; | 477 | if (!FbTk::FileUtil::isRegularFile(filename.c_str())) { |
477 | stat(filename.c_str(), &s); | ||
478 | |||
479 | if (! (s.st_mode & S_IFREG)) | ||
480 | return ""; | 478 | return ""; |
479 | } | ||
481 | 480 | ||
482 | // nope, we'll have to read the file | 481 | // nope, we'll have to read the file |
483 | ifstream infile(filename.c_str()); | 482 | ifstream infile(filename.c_str()); |