diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-08-15 15:18:28 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-08-15 15:18:28 +0900 |
commit | d9b6e0bda45134852c38f60f25a5109923f8cd53 (patch) | |
tree | c3f28d048755ff8af5038717e4f6fe0474f74d66 /kgamma/xf86gammacfg/xf86gammacfg.cpp | |
parent | b6cbb4874b8b5efd8e086b4ca7089f58c002103c (diff) | |
download | tdegraphics-d9b6e0bda45134852c38f60f25a5109923f8cd53.tar.gz tdegraphics-d9b6e0bda45134852c38f60f25a5109923f8cd53.zip |
Removed old strstream code and switch to sstream permanently.
Inspired by similar work on tdeadmin.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kgamma/xf86gammacfg/xf86gammacfg.cpp')
-rw-r--r-- | kgamma/xf86gammacfg/xf86gammacfg.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/kgamma/xf86gammacfg/xf86gammacfg.cpp b/kgamma/xf86gammacfg/xf86gammacfg.cpp index db98a8fb..640940e7 100644 --- a/kgamma/xf86gammacfg/xf86gammacfg.cpp +++ b/kgamma/xf86gammacfg/xf86gammacfg.cpp @@ -23,15 +23,10 @@ #include <fstream> #include <string> #include <vector> +#include <sstream> #include <config.h> -#ifdef HAVE_SSTREAM -#include <sstream> -#else -#include <strstream.h> -#define istringstream istrstream -#endif using namespace std; |