summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-03-13 15:57:33 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-03-13 17:01:34 +0100
commit92928f99f83f453a00de4f6c41ca0daa7d37f7d4 (patch)
treebbc086510d2e208239da6ef93b2581f23c94e862 /chart2
parentade1641ab632565820ede720b6151435aca4dd78 (diff)
add some debug helpers
Change-Id: I03d8baab55548fde1e34b55927fd5dcf9cff58a9
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/view/main/DummyXShape.cxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/chart2/source/view/main/DummyXShape.cxx b/chart2/source/view/main/DummyXShape.cxx
index 5a817a435b69..3d24fcd27a99 100644
--- a/chart2/source/view/main/DummyXShape.cxx
+++ b/chart2/source/view/main/DummyXShape.cxx
@@ -48,6 +48,22 @@ namespace chart {
namespace dummy {
+#if 0
+
+std::ostream& operator<<(std::ostream& rStrm, const awt::Point& rPoint)
+{
+ rStrm << rPoint.X << "," << rPoint.Y;
+ return rStrm;
+}
+
+std::ostream& operator<<(std::ostream& rStrm, const awt::Size& rSize)
+{
+ rStrm << rSize.Width << "," << rSize.Height;
+ return rStrm;
+}
+
+#endif
+
bool TextCache::hasEntry(const TextCacheKey& rKey)
{
return maCache.find(rKey) != maCache.end();