summaryrefslogtreecommitdiffstats
path: root/ksvg/impl
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-08-15 15:18:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-08-15 15:18:28 +0900
commitd9b6e0bda45134852c38f60f25a5109923f8cd53 (patch)
treec3f28d048755ff8af5038717e4f6fe0474f74d66 /ksvg/impl
parentb6cbb4874b8b5efd8e086b4ca7089f58c002103c (diff)
downloadtdegraphics-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 'ksvg/impl')
-rw-r--r--ksvg/impl/libs/libtext2path/src/Tools.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/ksvg/impl/libs/libtext2path/src/Tools.h b/ksvg/impl/libs/libtext2path/src/Tools.h
index c7753365..6bf33bf7 100644
--- a/ksvg/impl/libs/libtext2path/src/Tools.h
+++ b/ksvg/impl/libs/libtext2path/src/Tools.h
@@ -24,12 +24,7 @@
#include <list>
#include <string>
#include <config.h>
-#ifdef HAVE_SSTREAM
-# include <sstream>
-#else
-# include <strstream>
-# define ostringstream ostrstream
-#endif
+#include <sstream>
#define T2PMAX(a, b) ((b) < (a) ? (a) : (b))
#define T2PMIN(a, b) ((a) < (b) ? (a) : (b))