Skip to content

Commit 70e7395

Browse files
magnustymoteussilverweed
authored andcommitted
[gui] Add treemap as subdirectory & fix platform-specific errors
1 parent d2cbd74 commit 70e7395

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

gui/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ if(webgui)
2626
add_subdirectory(browsable)
2727
add_subdirectory(browserv7)
2828

29+
add_subdirectory(treemap)
30+
2931
if(root7)
3032
add_subdirectory(canvaspainter)
3133
add_subdirectory(fitpanelv7)

gui/treemap/inc/ROOT/RTreeMapPainter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public:
5454

5555
struct Node final : public ROOT::Experimental::RTreeMapBase::Node, public TObject {
5656
public:
57-
ClassDef(Node, 1);
57+
ClassDefOverride(Node, 1);
5858
};
5959
RTreeMapPainter() = default;
6060
void Paint(Option_t *opt) override;

gui/treemap/src/RTreeMapBase.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#include <cmath>
1919
#include <iomanip>
20-
#include <iostream>
20+
#include <sstream>
2121
#include <unordered_map>
2222
#include <algorithm>
2323

0 commit comments

Comments
 (0)