Commit 44cc8cbc authored by claes's avatar claes

Bugfix when loading bcom classgraph

parent 4e803886
/*
* Proview $Id: JopMethodsMenu.java,v 1.5 2005-11-02 14:02:18 claes Exp $
* Proview $Id: JopMethodsMenu.java,v 1.6 2007-01-30 13:02:27 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -371,6 +371,9 @@ public class JopMethodsMenu implements ActionListener, PopupMenuListener,
if ( coid.objid.vid == 1)
name = "jpwr.jopc.Jopc" + sret.str.substring(1,2).toUpperCase() +
sret.str.substring(2).toLowerCase();
else if ( coid.objid.vid == 10)
name = "jpwr.bcomp.Jopc" + sret.str.substring(0,1).toUpperCase() +
sret.str.substring(1).toLowerCase();
else
name = "jpwr.jopc.Jopc" + sret.str.substring(0,1).toUpperCase() +
sret.str.substring(1).toLowerCase();
......
/*
* Proview $Id: JopSessionRep.java,v 1.10 2007-01-30 06:52:55 claes Exp $
* Proview $Id: JopSessionRep.java,v 1.11 2007-01-30 13:02:27 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -167,6 +167,9 @@ public class JopSessionRep implements JopSessionIfc {
if ( coid.objid.vid == 1)
name = "jpwr.jopc.Jopc" + sret.str.substring(1,2).toUpperCase() +
sret.str.substring(2).toLowerCase() + suffix;
else if ( coid.objid.vid == 10)
name = "jpwr.bcomp.Jopc" + sret.str.substring(0,1).toUpperCase() +
sret.str.substring(1).toLowerCase() + suffix;
else
name = "jpwr.jopc.Jopc" + sret.str.substring(0,1).toUpperCase() +
sret.str.substring(1).toLowerCase() + suffix;
......
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