Skip to content

Commit

Permalink
- Instead of showing the class with the type, we show it as value ins…
Browse files Browse the repository at this point in the history
…tead.

SVN Rev: 3281
  • Loading branch information
derickr committed May 18, 2010
1 parent 406a387 commit f05d6af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ static void add_property(GtkTreeStore *store, GtkTreeIter *parent_iter, xdebug_x
if (strcmp(type_attr->value, "object") == 0) { if (strcmp(type_attr->value, "object") == 0) {
class_attr = xdebug_xml_fetch_attribute(property, "classname"); class_attr = xdebug_xml_fetch_attribute(property, "classname");
if (class_attr && class_attr->value) { if (class_attr && class_attr->value) {
type = xdebug_sprintf("object(%s)", class_attr->value); value = xdebug_sprintf("class = %s", class_attr->value);
} }
} }
} }
Expand Down

0 comments on commit f05d6af

Please sign in to comment.