diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gatscon/gatstotree.cpp | 8 | ||||
-rw-r--r-- | src/gatscon/gatstotree.h | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/gatscon/gatstotree.cpp b/src/gatscon/gatstotree.cpp index d01e4b8..e388d5e 100644 --- a/src/gatscon/gatstotree.cpp +++ b/src/gatscon/gatstotree.cpp | |||
@@ -31,6 +31,10 @@ void gatsToTree( QTreeWidgetItem *p, Gats::Object *pObj ) | |||
31 | case Gats::typeDictionary: | 31 | case Gats::typeDictionary: |
32 | gatsToTree( p, dynamic_cast<Gats::Dictionary *>( pObj ) ); | 32 | gatsToTree( p, dynamic_cast<Gats::Dictionary *>( pObj ) ); |
33 | break; | 33 | break; |
34 | |||
35 | case Gats::typeNull: | ||
36 | gatsToTree( p, dynamic_cast<Gats::Null *>( pObj ) ); | ||
37 | break; | ||
34 | } | 38 | } |
35 | } | 39 | } |
36 | 40 | ||
@@ -81,3 +85,7 @@ void gatsToTree( QTreeWidgetItem *p, Gats::Dictionary *pObj ) | |||
81 | } | 85 | } |
82 | } | 86 | } |
83 | 87 | ||
88 | void gatsToTree( QTreeWidgetItem *p, Gats::Null *pObj ) | ||
89 | { | ||
90 | p->setText( 1, "null"); | ||
91 | } | ||
diff --git a/src/gatscon/gatstotree.h b/src/gatscon/gatstotree.h index 26fb76c..a803017 100644 --- a/src/gatscon/gatstotree.h +++ b/src/gatscon/gatstotree.h | |||
@@ -23,5 +23,6 @@ void gatsToTree( QTreeWidgetItem *p, Gats::Float *pObj ); | |||
23 | void gatsToTree( QTreeWidgetItem *p, Gats::Boolean *pObj ); | 23 | void gatsToTree( QTreeWidgetItem *p, Gats::Boolean *pObj ); |
24 | void gatsToTree( QTreeWidgetItem *p, Gats::List *pObj ); | 24 | void gatsToTree( QTreeWidgetItem *p, Gats::List *pObj ); |
25 | void gatsToTree( QTreeWidgetItem *p, Gats::Dictionary *pObj ); | 25 | void gatsToTree( QTreeWidgetItem *p, Gats::Dictionary *pObj ); |
26 | void gatsToTree( QTreeWidgetItem *p, Gats::Null *pObj ); | ||
26 | 27 | ||
27 | #endif | 28 | #endif |