Commit 335a21a7 authored by claes's avatar claes

pwr40 uses the node of if is specified

parent a385774f
...@@ -2952,6 +2952,8 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event) ...@@ -2952,6 +2952,8 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
else else
return 0; return 0;
} }
else
return 0;
break; break;
} }
case glow_eEvent_TipText: case glow_eEvent_TipText:
...@@ -3440,7 +3442,13 @@ graph_eDatabase Graph::parse_attr_name( char *name, char *parsed_name, ...@@ -3440,7 +3442,13 @@ graph_eDatabase Graph::parse_attr_name( char *name, char *parsed_name,
pwr_tOid oid; pwr_tOid oid;
pwr_tStatus sts; pwr_tStatus sts;
sts = gdh_GetNodeObject( 0, &oid); if ( strcmp( object_name, "") != 0) {
sts = gdh_NameToObjid( object_name, &oid);
if ( ODD(sts))
sts = gdh_GetNodeObject( oid.vid, &oid);
}
else
sts = gdh_GetNodeObject( 0, &oid);
if ( ODD(sts)) { if ( ODD(sts)) {
sts = gdh_ObjidToName( oid, nodename, sizeof(nodename), cdh_mName_pathStrict); sts = gdh_ObjidToName( oid, nodename, sizeof(nodename), cdh_mName_pathStrict);
if ( ODD(sts)) { if ( ODD(sts)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment